| 12345678910111213141516171819202122232425262728293031323334353637 |
- .dashboarddesigner-header {
- display: flex;
- justify-content: space-between;
- .toolbar-title {
- flex: 1;
- text-align: center;
- .ant-input-group-wrapper {
- display: inline-block;
- vertical-align: middle;
- width: 200px;
- margin-bottom: 5px;
- }
- .ant-input-group{
- width: 300px;
- .input-title {
- text-align: center;
- font-size: 18px;
- border: none;
- border-bottom-right-radius: 4px;
- border-top-right-radius: 4px;
- background-color: transparent;
- }
- .ant-input-group-addon {
- cursor: pointer;
- border: none;
- background: transparent;
- :hover {
- color: #40a9ff;
- }
- }
- }
- }
- }
- .ant-tooltip-arrow {
- border-bottom-color: rgba(255,255,255,.75) !important;
- }
|