OLD | NEW |
1 /* Apps */ | 1 /* Apps */ |
2 | 2 |
3 #apps-content { | 3 #apps-content { |
4 position: relative; | 4 position: relative; |
5 max-width: 780px; /* (124 + margin * 2) * 6 */ | 5 max-width: 780px; /* (124 + margin * 2) * 6 */ |
6 } | 6 } |
7 | 7 |
8 html.apps-promo-visible #apps-content { | 8 html.apps-promo-visible #apps-content { |
9 max-width: 650px; /* (124 + margin * 2) * 5 */ | 9 max-width: 650px; /* (124 + margin * 2) * 5 */ |
10 } | 10 } |
(...skipping 12 matching lines...) Expand all Loading... |
23 } | 23 } |
24 | 24 |
25 .app, | 25 .app, |
26 .app[new=installed] { | 26 .app[new=installed] { |
27 box-sizing: border-box; | 27 box-sizing: border-box; |
28 -webkit-perspective: 400; | 28 -webkit-perspective: 400; |
29 border-radius: 10px; | 29 border-radius: 10px; |
30 color: black; | 30 color: black; |
31 margin: 5px 3px; | 31 margin: 5px 3px; |
32 position: absolute; | 32 position: absolute; |
33 height: 136px; | 33 height: 150px; |
34 width: 124px; /* 920 / 7 - margin * 2 */ | 34 width: 124px; /* 920 / 7 - margin * 2 */ |
35 visibility: hidden; | 35 visibility: hidden; |
36 } | 36 } |
37 | 37 |
38 .app a { | 38 .app a { |
39 border-radius: 10px; | 39 border-radius: 10px; |
40 bottom: 0; | 40 bottom: 0; |
41 left: 0; | 41 left: 0; |
42 position: absolute; | 42 position: absolute; |
43 right: 0; | 43 right: 0; |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 } | 91 } |
92 | 92 |
93 .app.dragging > .app-settings { | 93 .app.dragging > .app-settings { |
94 background-image: none; | 94 background-image: none; |
95 } | 95 } |
96 | 96 |
97 .app.dragging { | 97 .app.dragging { |
98 opacity: .7; | 98 opacity: .7; |
99 } | 99 } |
100 | 100 |
| 101 .app_notification { |
| 102 color: gray; |
| 103 display: block; |
| 104 -webkit-transition: color .15s linear; |
| 105 } |
| 106 .app_notification:hover { |
| 107 color: Blue; |
| 108 } |
| 109 |
| 110 .app-notification-close { |
| 111 height: 14px; |
| 112 position: absolute; |
| 113 right: 6px; |
| 114 top: 6px; |
| 115 width: 14px; |
| 116 } |
| 117 |
101 #apps-content[launcher-animations=true] .app { | 118 #apps-content[launcher-animations=true] .app { |
102 -webkit-transition: top .2s, left .2s, right .2s, opacity .2s; | 119 -webkit-transition: top .2s, left .2s, right .2s, opacity .2s; |
103 } | 120 } |
104 | 121 |
105 #apps-content.visible .app { | 122 #apps-content.visible .app { |
106 visibility: visible; | 123 visibility: visible; |
107 } | 124 } |
108 | 125 |
109 @-webkit-keyframes bounce { | 126 @-webkit-keyframes bounce { |
110 0% { | 127 0% { |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 border-width: 6px 10px 12px 6px; | 209 border-width: 6px 10px 12px 6px; |
193 -webkit-border-image: url('g-button-chocobo.png') 6 10 12 6; | 210 -webkit-border-image: url('g-button-chocobo.png') 6 10 12 6; |
194 font-size: 1.3em; | 211 font-size: 1.3em; |
195 color: #fff !important; | 212 color: #fff !important; |
196 text-decoration: none; | 213 text-decoration: none; |
197 font-weight: bold; | 214 font-weight: bold; |
198 text-align: center; | 215 text-align: center; |
199 padding: 2px 10px; | 216 padding: 2px 10px; |
200 white-space: nowrap; | 217 white-space: nowrap; |
201 } | 218 } |
| 219 |
| 220 .notification-bubble { |
| 221 background-color: White; |
| 222 border: 1px solid #B5B5B5; |
| 223 font-family: Helvetica, Arial, sans-serif; |
| 224 font-size : 107%; |
| 225 min-height: 100px; |
| 226 min-width: 200px; |
| 227 opacity: 0; |
| 228 padding: 10px; |
| 229 position: absolute; |
| 230 width: 200px; |
| 231 -webkit-border-radius: 5px; |
| 232 -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2); |
| 233 -webkit-transition: opacity 0.2s linear; |
| 234 } |
| 235 .notification-bubble:focus { |
| 236 outline: none; |
| 237 } |
| 238 |
| 239 /* A content-less div with this setting, will create an arrow when coupled |
| 240 with the arrow_* styles below it. */ |
| 241 div.arrow { |
| 242 opacity: 0; |
| 243 border-style: solid; |
| 244 border-width: 12px; |
| 245 height: 0px; |
| 246 width: 0px; |
| 247 position: absolute; |
| 248 } |
| 249 div.arrow-contents { |
| 250 border-color: transparent white transparent transparent; |
| 251 z-index: 2; |
| 252 -webkit-transition: opacity 0.2s linear; |
| 253 } |
| 254 div.arrow-shadow { |
| 255 border-color: transparent gray transparent transparent; |
| 256 -webkit-transition: opacity 0.2s linear; |
| 257 } |
| 258 div.arrow-border { |
| 259 border-color: transparent #B5B5B5 transparent transparent; |
| 260 z-index: 1; |
| 261 -webkit-transition: opacity 0.2s linear; |
| 262 } |
OLD | NEW |