-
-
Notifications
You must be signed in to change notification settings - Fork 709
/
Copy path_applist.scss
197 lines (190 loc) · 4.57 KB
/
_applist.scss
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
.app-list {
overflow: auto; // Needed to make the background span everything on screen.
@media #{$desktop} {
padding: 32px;
}
@media #{$mobile} {
padding: 0px 8px;
}
background-color: $applist-background-color;
color: $applist-foreground-color;
>h1 {
display: flex;
flex-direction: row;
align-items: flex-end;
justify-content: space-between;
margin-top: 0px;
padding-bottom: 12px;
border-bottom: 1px solid $applist-rule-color;
margin-bottom: 12px;
font-size: 24pt;
font-weight: 400;
}
.hide {
// !important used to override other classes that might assign e.g. display: block
display: none !important;
}
>.search-row {
@extend %search-row;
position: relative;
margin-bottom: 8px;
}
>.popular-container {
// Restricts the visible portion of the "most used" section to a single row.
display: block;
overflow: hidden;
@media #{$desktop} {
height: 280px;
}
@media #{$mobile} {
height: 142px;
}
}
>h2, >.popular-container>h2 {
display: block;
font-weight: 400;
border-bottom: 1px solid $applist-rule-color;
margin-top: 0px;
@media #{$mobile} {
margin-bottom: 8px;
}
}
>.app-button, >.popular-container>.app-button {
@include unstyled-button();
float: left;
display: block;
// Browsers render button contents vertically-centered by default.
// I can't figure out how to suggest that the browser align contents to the top instead, so I
// specify position: relative here and position: absolute for the image and text label.
position: relative;
@media #{$desktop} {
width: 148px;
height: 200px;
margin-left: 10px;
margin-right: 10px;
margin-bottom: 20px;
}
@media #{$mobile} {
width: 74px;
height: 102px;
margin-left: 5px;
margin-right: 5px;
margin-bottom: 10px;
}
//box-shadow: 0 0 1px black;
overflow: hidden;
&.app-action {
}
&.dev-background {
background-image: url("/devmode.png");
background-size: 100% auto;
background-color: #ccc;
}
&.uninstall-action>.app-icon {
&::before {
position: absolute;
content: " ";
display: block;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 6px;
background-color: rgba(0, 0, 0, 0.5);
background-image: url("/close-FFFFFF.svg");
background-position: center;
background-size: 50% 50%;
background-repeat: no-repeat;
z-index: 1;
}
}
>.app-icon {
@extend %pseudo-img-tag;
display: block;
position: absolute;
top: 0px;
left: 0px;
@media #{$desktop} {
width: 128px;
height: 128px;
margin: 10px;
}
@media #{$mobile} {
width: 64px;
height: 64px;
margin: 5px;
}
border-radius: 6px;
vertical-align: top;
&.pseudoapp {
background-color: $applist-pseudoapp-background-color;
border: 1px $applist-pseudoapp-outline-color;
}
&.restore-icon {
background-image: url('/restore-B7B7B7.svg');
&:hover {
background-image: url('/restore-5D5D5D.svg');
}
}
&.upload-icon {
background-image: url('/upload-B7B7B7.svg');
&:hover {
background-image: url('/upload-5D5D5D.svg');
}
}
&.install-icon {
background-image: url('/install-714DAA.svg');
border: 1px solid $generic-border-color;
&:hover {
background-image: url('/install-896AC6.svg');
}
}
}
%apptext {
@include overflow-ellipsis();
position: absolute;
left: 0px;
width: 100%;
vertical-align: top;
text-align: left;
@media #{$desktop} {
margin-left: 10px;
}
@media #{$mobile} {
margin-left: 5px;
}
}
>.app-title, >.action-title {
@extend %apptext;
@media #{$desktop} {
top: 148px;
font-size: 14pt;
}
@media #{$mobile} {
top: 74px;
font-size: 8pt;
}
}
>.action-text {
@extend %apptext;
color: $applist-action-text-color;
@media #{$desktop} {
top: 168px;
font-size: 13pt;
}
@media #{$mobile} {
top: 88px;
font-size: 8pt;
}
}
}
}
.main-content>.not-signed-up {
max-width: 300px;
background-color: white;
margin: 32px auto;
padding: 16px;
border-radius: 4px;
h1 { margin-top: 0; }
p { margin-bottom: 0; }
}