| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- .toolbar-title {
- .ant-input-group-wrapper {
- display: inline-block;
- vertical-align: middle;
- width: 200px;
- margin-bottom: 5px;
- }
- }
- .header {
- display: flex;
- justify-content: space-between;
- .toolbar-title {
- flex: 1;
- text-align: center;
- .ant-input-group{
- width: 300px;
- }
- .input-title {
- input {
- text-align: center;
- font-size: 16px;
- 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: -580px;
- margin-top: -30px;
- }
- }
- .toolbar-buttons {
- button {
- margin-left: 8px;
- }
- }
- }
- .ant-tooltip-arrow {
- border-bottom-color: rgba(255,255,255,.75) !important;
- }
|