| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- .panel-options-group {
- margin-bottom: 10px;
- border: $panel-options-group-border;
- border-radius: $border-radius;
- background: $page-bg;
- }
- .panel-options-group__header {
- padding: 4px 8px;
- background: $panel-options-group-header-bg;
- position: relative;
- border-radius: $border-radius $border-radius 0 0;
- display: flex;
- align-items: center;
- .btn {
- position: absolute;
- right: 0;
- top: 0;
- }
- }
- .panel-options-group__add-btn {
- background: none;
- border: none;
- display: flex;
- align-items: center;
- padding: 0;
- &:hover {
- .panel-options-group__add-circle {
- background-color: $btn-success-bg;
- color: $white;
- }
- }
- }
- .panel-options-group__add-circle {
- @include gradientBar($btn-success-bg, $btn-success-bg-hl);
- border-radius: 50px;
- width: 20px;
- height: 20px;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-right: 6px;
- i {
- position: relative;
- top: 1px;
- }
- }
- .panel-options-group__title {
- font-size: 1.1rem;
- position: relative;
- top: 1px;
- }
- .panel-options-group__body {
- padding: 20px;
- &--queries {
- min-height: 200px;
- }
- }
|