12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- @import "variable";
- .textAlignCenter {
- text-align: center !important;
- }
- .textAlignRight {
- text-align: right !important;
- }
- .textAlignLeft {
- text-align: left !important;
- }
- .hide {
- display: none !important;
- }
- /*** Table ***/
- .searchFilterDropdown {
- background-color: @white;
- padding: 8px;
- border-radius: 6px;
- box-shadow: @popover-box-shadow;
- }
- .unSelected {
- color: @codemirror-placeholder
- }
- // @rich-text
- .highlight {
- color: @primary-color;
- }
- /*** Form ***/
- .formStepArea {
- padding: 0 5%;
- margin: 10px 0 30px;
- }
- /*** Modal ***/
- .modalLeftButton {
- float: left;
- margin-left: 6px;
- }
- /*** Breadcrumb ***/
- .breadcrumb {
- a {
- font-size: 1.25em;
- line-height: 32px;
- }
- }
- :global {
- .widget-tooltip-circle {
- display: inline-block;
- width: 10px;
- height: 10px;
- margin-right: 5px;
- border-radius: 50%;
- }
- }
- .shortcut {
- display: flex;
- align-items: center;
- justify-content: space-between;
- a {
- width: 38px;
- color: inherit;
- }
- i {
- font-size: 24px;
- // line-height: 64px;
- }
- }
|