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
|
@mixin liferay-button {
.v-button:focus {
outline: none;
}
.v-button:hover .v-button-wrap {
background: #b9ced9 url(/html/themes/classic/images/application/state_hover_bg.png) repeat-x 0 0;
border-color: #627782;
color: #369;
}
.v-button:active .v-button-wrap,
.v-button.v-pressed .v-button-wrap,
.v-button:focus .v-button-wrap {
background: #ebebeb url(/html/themes/classic/images/application/state_active_bg.png) repeat-x 0 0;
border-color: #555;
}
.v-button {
padding: 0;
border: none;
height: 26px;
overflow: hidden;
}
.v-nativebutton {
font-size: $font-size;
}
.v-button .v-button-wrap,
.v-disabled.v-button .v-button-wrap {
display: block;
font-size: $font-size;
font-weight: bold;
border: 1px solid #c8c9ca;
border-right-color: #9e9e9e;
border-bottom-color: #9e9e9e;
background: #d4d4d4 url(/html/themes/classic/images/portlet/header_bg.png) repeat-x 0 0;
-webkit-background-origin: padding;
-moz-background-origin: padding;
padding: 4px 4px 0px 4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
line-height: 16px;
min-height: 16px;
text-shadow: 1px 1px #fff;
color: #34404f;
text-overflow: ellipsis;
height: 20px;
}
.v-button-caption {
line-height: 16px;
}
/* Link style button */
.v-button-link,
.v-disabled.v-button-link,
.v-button-link:focus,
.v-button-link:active,
.v-button-link:hover,
.v-button-link-pressed,
button.v-nativebutton-link,
.v-disabled.v-nativebutton-link,
button.v-nativebutton-link:focus,
button.v-nativebutton-link:active,
button.v-nativebutton-link:hover,
button.v-nativebutton-link-pressed,
.v-button.v-button-link .v-button-wrap,
.v-button.v-button-link:focus .v-button-wrap,
.v-button.v-button-link:active .v-button-wrap,
.v-disabled.v-button.v-button-link .v-button-wrap {
color: #5B677D;
font-weight: normal;
border: none;
border-style: none;
background: transparent;
padding: 0;
font-size: $font-size;
-webkit-box-shadow: none;
-mox-box-shadow: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
text-shadow: none;
height: auto;
}
.v-button-link:hover {
color: #0066cc;
text-decoration: none;
}
.v-button-link:focus,
.v-sa & .v-button-link:focus {
outline: 1px dotted #1b699f;
outline-offset: -1px;
}
.v-sa & .v-button-link:focus {
outline-offset: -1px;
}
/* CheckBox */
.v-checkbox input {
margin-right: 3px;
}
}
|