| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- .dashboarddesigner-header {
- display: flex;
- justify-content: space-between;
- .toolbar-title {
- flex: 1;
- text-align: center;
- .input-title {
- width: 250px;
- .ant-input-wrapper {
- input {
- text-align: center;
- font-size: 18px;
- color: rgba(0, 0, 0, 0.65);
- cursor: text;
- 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-form-explain {
- margin-right: -520px;
- margin-top: -30px;
- }
- }
- .toolbar-viewswitch {
- .edit-mode-switch {
- background-color: #1890ff;
- }
- .view-mode-switch {
- background-color: #51C319;
- }
- }
- }
- .ant-tooltip-arrow {
- border-bottom-color: rgba(255,255,255,.75) !important;
- }
|