-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy path_gallery.scss
More file actions
91 lines (75 loc) · 1.76 KB
/
_gallery.scss
File metadata and controls
91 lines (75 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
@use "../../variables" as *;
// Gallery styles.
.cld-gallery-settings {
width: 100%;
display: flex;
flex-wrap: wrap;
padding: 1rem 0;
box-sizing: border-box;
@media only screen and (min-width: $size-medium) {
margin-left: -1rem;
margin-right: -1rem;
}
&__column {
box-sizing: border-box;
width: 100%;
@media only screen and (min-width: $size-medium) {
padding-left: 1rem;
padding-right: 1rem;
width: 50%;
}
}
.components-color-palette__custom-color-button {
border: none;
border-radius: 2px 2px 0 0;
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .2);
box-sizing: border-box;
cursor: pointer;
height: 64px;
outline: 1px solid transparent;
position: relative;
width: 100%;
}
.components-color-palette__custom-color-text-wrapper {
border-radius: 0 0 2px 2px;
box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, .2), inset 1px 0 0 0 rgba(0, 0, 0, .2), inset -1px 0 0 0 rgba(0, 0, 0, .2);
font-size: 13px;
padding: 12px 16px;
position: relative;
}
}
@at-root {
.components-base-control__field select {
display: block;
margin: 1rem 0;
}
.components-range-control__wrapper {
margin: 0 !important;
}
.components-range-control__root {
flex-direction: row-reverse;
margin: 1rem 0;
}
.components-input-control.components-number-control.components-range-control__number {
margin-left: 0 !important;
margin-right: 16px;
}
.components-panel {
border: 0 !important;
}
.components-panel__body:first-child {
border-top: 0 !important;
}
.components-panel__body:last-child {
border-bottom: 0 !important;
}
.components-textarea-control__input {
display: block;
width: 100%;
margin: 0.5rem 0;
}
.components-popover:not(.is-without-arrow):after,
.components-popover:not(.is-without-arrow):before {
content: none;
}
}