blob: dbea2ba6480dfe78b00f9bbc2ca5a6bc8579ea5e (
plain)
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
|
/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
.app {
outline: none;
position: absolute;
text-align: center;
}
.app-contents {
-webkit-transition: -webkit-transform 100ms;
}
.app-contents:active:not(.suppress-active),
.app:not(.click-focus):focus .app-contents:not(.suppress-active),
.drag-representation:not(.placing) .app-contents {
-webkit-transform: scale(1.1);
}
/* Don't animate the initial scaling. */
.app-contents:active:not(.suppress-active),
/* Active gets applied right before .suppress-active, so to avoid flicker
* we need to make the scale go back to normal without an animation. */
.app-contents.suppress-active {
-webkit-transition-duration: 0;
}
.app-contents > span {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.app-img-container {
/* -webkit-mask-image set by JavaScript to the image source. */
-webkit-mask-size: 100% 100%;
margin-left: auto;
margin-right: auto;
}
.app-img-container > * {
height: 100%;
width: 100%;
}
.app-icon-div {
-webkit-box-align: center;
-webkit-box-pack: center;
background-color: white;
border: 1px solid #d5d5d5;
border-radius: 5px;
display: -webkit-box;
margin-left: auto;
margin-right: auto;
position: relative;
vertical-align: middle;
z-index: 0;
}
.app-icon-div .app-img-container {
bottom: 10px;
left: 10px;
position: absolute;
}
.app-icon-div .color-stripe {
border-bottom-left-radius: 5px 5px;
border-bottom-right-radius: 5px 5px;
bottom: 0;
height: 3px;
opacity: 1.0;
position: absolute;
width: 100%;
z-index: 100;
}
.app-context-menu > button:first-child {
font-weight: bold;
}
.app-context-menu {
z-index: 1000;
}
.app-context-menu > [checked]::before {
height: 5px;
}
.launch-click-target {
cursor: pointer;
}
.app-img-container > img:first-child {
display: block;
}
.app .invisible {
visibility: hidden;
}
|