blob: 6fcb3d1705fc327608f99844482945867f5f59b7 (
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
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
|
@mixin base-tabsheet($name : v-tabsheet) {
.#{$name},
.#{$name}-content,
.#{$name}-deco {
outline: none; /* Prevent selection outline which might break layouts or cause scrollbars */
text-align: left; /* Force default alignment */
}
.#{$name}-tabs {
empty-cells: hide;
border-collapse: collapse;
margin: 0;
padding: 0;
border: 0;
width: 100%;
overflow:hidden;
}
.#{$name}-tabitemcell:focus {
outline: none;
}
.#{$name}-tabitemcell,
.#{$name}-spacertd {
margin: 0;
padding: 0;
vertical-align: bottom;
}
.#{$name}-spacertd {
width: 100%;
}
.#{$name}-spacertd div {
border-left: 1px solid #aaa;
border-bottom: 1px solid #aaa;
height: 1em;
padding: 0.2em 0;
}
.#{$name}-hidetabs > .#{$name}-tabcontainer {
display: none;
}
.#{$name}-scroller {
white-space: nowrap;
text-align: right;
margin-top: -1em;
}
.v-disabled .#{$name}-scroller {
display: none;
}
.#{$name}-scrollerPrev,
.#{$name}-scrollerNext,
.#{$name}-scrollerPrev-disabled,
.#{$name}-scrollerNext-disabled {
border: 1px solid #aaa;
background: #fff;
width: 12px;
height: 1em;
cursor: pointer;
}
.#{$name}-scrollerPrev-disabled,
.#{$name}-scrollerNext-disabled {
opacity: 0.5;
cursor: default;
}
.#{$name}-tabs .v-caption,
.#{$name}-tabs .v-caption span {
white-space: nowrap;
}
.#{$name}-caption-close {
display: inline;
display: inline-block;
zoom: 1;
width: 16px;
height: 16px;
text-align: center;
font-weight: bold;
cursor: pointer;
vertical-align: middle;
user-select: none;
-khtml-user-select: none;
-ms-user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
}
.#{$name} .v-disabled .#{$name}-caption-close {
cursor: default;
visibility: hidden;
}
.#{$name}-tabitem:hover .#{$name}-caption-close {
visibility: visible;
}
.#{$name}-tabitem {
border: 1px solid #aaa;
border-right: none;
cursor: pointer;
padding: 0.2em 0.5em;
}
.#{$name}-tabitem .v-caption {
cursor: inherit;
}
.#{$name}.v-disabled .#{$name}-tabitem,
.#{$name}-tabitemcell-disabled .#{$name}-tabitem {
cursor: default;
}
.#{$name}-tabitem-selected {
cursor: default;
border-bottom-color: #fff;
}
.#{$name}-tabitem-selected .v-caption {
cursor: default;
}
.#{$name}-content {
border: 1px solid #aaa;
/* Vertical borders are not supported, use v-tabsheet-tabcontainer and v-tabsheet-deco to present these borders */
border-top: none;
border-bottom: none;
position: relative;
}
.#{$name}-deco {
height: 1px;
background: #aaa;
overflow: hidden;
}
.#{$name}-hidetabs .#{$name}-content {
border: none;
}
.#{$name}-hidetabs .#{$name}-deco {
height: 0;
}
/*
* In IE8 and IE9 we need to do magic things to avoid scrollbars since it does not completely
* support the HTML5 doctype. Changing the contained element to a block element will not add
* magical bottom paddings to the contained element and cause scrollbars. Doing this for
* all browsers for consistency.
*/
.#{$name} .v-scrollable > .v-widget {
display: block;
}
}
|