| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- .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 {
- text-align: center;
- font-size: 16px;
- border: none;
- background-color: transparent;
- input {
- text-align: center;
- font-size: 16px;
- color: rgba(0, 0, 0, 0.65);
- cursor: text;
- border: none;
- border-radius: @border-radius-base;
- background-color: transparent;
- &:focus {
- border: 1px solid #40A9FF;
- }
- }
- }
- .ant-input-group-addon {
- cursor: pointer;
- border: none;
- background: transparent;
- :hover {
- color: #40a9ff;
- }
- }
- .ant-form-item-control.has-error >.ant-form-item-children >.input-title >.ant-input-wrapper >input {
- border-color: #f5222d;
- }
- .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;
- }
|