-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Expand file tree
/
Copy pathstyles.native.scss
More file actions
103 lines (87 loc) · 1.86 KB
/
styles.native.scss
File metadata and controls
103 lines (87 loc) · 1.86 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
92
93
94
95
96
97
98
99
100
101
102
103
.media-placeholder__container {
flex: 1;
height: 142;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #e0e0e0; // $light-dim
padding-left: 12;
padding-right: 12;
padding-top: 12;
padding-bottom: 12;
border-top-left-radius: 2;
border-top-right-radius: 2;
border-bottom-left-radius: 2;
border-bottom-right-radius: 2;
}
.media-placeholder__container--dark {
background-color: #1f1f1f; // $dark-dim
}
.media-placeholder__container-selected {
border-width: 2px;
border-color: $blue-40;
}
.media-placeholder__container-selected--dark {
border-color: $blue-50;
}
.emptyStateDescription {
text-align: center;
color: $white;
font-size: 16;
font-weight: 400;
}
.emptyStateDescriptionDark {
color: $black;
}
.media-placeholder__header-icon {
width: 24px;
height: 24px;
margin-right: $grid-unit;
fill: $light-secondary;
}
.media-placeholder__header-icon--dark {
fill: $dark-tertiary;
}
.media-placeholder__header-title {
text-align: center;
font-size: 16;
color: $light-secondary;
}
.media-placeholder__header-title--dark {
color: $dark-tertiary;
}
.appender {
height: auto;
background-color: $white;
border: $border-width solid $light-gray-500;
border-radius: 4px;
}
.appenderDark {
background-color: $background-dark-secondary;
border: $border-width solid $gray-70;
}
.addMediaButton {
color: $white;
background-color: $toolbar-button;
border-radius: $button-size-small * 0.5;
overflow: hidden;
size: $button-size-small;
}
.addMediaButtonDark {
color: $background-dark-secondary;
background-color: $gray-20;
}
.media-placeholder__button {
background-color: $light-primary;
border-radius: 3px;
padding: $grid-unit $grid-unit-20;
}
.media-placeholder__button--dark {
background-color: $dark-primary;
}
.media-placeholder__header {
flex-direction: row;
align-items: center;
margin-top: 4;
margin-bottom: 16;
}