bourbon
1 year ago
_variables.scss
1 year ago
customize-admin-rtl.css
1 year ago
customize-admin.css
1 year ago
customize-admin.scss
4 months ago
customize-controls-rtl.css
1 year ago
customize-controls.css
1 month ago
customize-controls.scss
3 months ago
customize-admin.scss
55 lines
| 1 | /** |
| 2 | * admin.scss |
| 3 | * General admin styles. |
| 4 | */ |
| 5 | |
| 6 | /** |
| 7 | * Imports |
| 8 | */ |
| 9 | @import '../../../everest-forms/assets/css/mixins/mixins'; |
| 10 | @import '../../../everest-forms/assets/css/variables/variables'; |
| 11 | |
| 12 | /** |
| 13 | * Styling begins. |
| 14 | */ |
| 15 | #everest-forms-builder { |
| 16 | .everest-forms-designer-icon { |
| 17 | position: fixed; |
| 18 | right: 22px; |
| 19 | bottom: 65px; |
| 20 | width: 55px; |
| 21 | height: 55px; |
| 22 | padding: 8px; |
| 23 | z-index: 99999; |
| 24 | cursor: pointer; |
| 25 | border-radius: 50%; |
| 26 | // background: #0095ff; |
| 27 | background: #ff8c39 !important; |
| 28 | // box-shadow: 1px 2px 20px #79c2f6; |
| 29 | box-shadow: 1px 2px 20px hsl(25 100% 76% / 1); |
| 30 | |
| 31 | svg { |
| 32 | fill: #fff; |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | &.multi-part-activated { |
| 37 | .everest-forms-designer-icon { |
| 38 | bottom: 105px; |
| 39 | } |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * Optimisation for screens 782px and smaller. |
| 45 | **/ |
| 46 | @media screen and (max-width: 782px) { |
| 47 | #everest-forms-builder { |
| 48 | &.multi-part-activated { |
| 49 | .everest-forms-designer-icon { |
| 50 | bottom: 75px; |
| 51 | } |
| 52 | } |
| 53 | } |
| 54 | } |
| 55 |