tabbed-panels.css
2.75 KB
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
.ame-tabbed-panel {
display: flex;
flex-direction: row;
}
.ame-tp-tabs {
display: flex;
flex-direction: column;
width: 200px;
margin: 0;
border-right: 1px solid #dcdcde;
background-color: #f7f7f7;
}
.ame-tp-tabs li {
margin: 0;
}
.ame-tp-tabs li.ui-state-active {
background-color: #fff;
}
.ame-tp-tabs li.ui-state-active a {
color: #333;
border-right-color: #fff;
font-weight: 600;
box-shadow: none;
}
.ame-tp-tabs a {
display: block;
padding: 8px 10px;
text-decoration: none;
border-bottom: 1px solid #dcdcde;
border-right: 1px solid transparent;
margin-right: -1px;
font-size: 14px;
box-shadow: none;
}
.ame-tp-content {
flex: 1;
padding: 0 12px 8px 12px;
background: white;
}
.ame-tp-section {
font-size: 13px;
}
.ame-tp-section .ame-tp-control-group-title {
font-weight: 600;
font-size: 1.0769230769em;
margin: 0 0 0.2857142857em 0;
width: 12.8571428571em;
min-width: 3.5714285714em;
flex-grow: 0;
}
.ame-tp-section .ame-tp-control-group {
margin-bottom: 0.6153846154em;
display: flex;
flex-wrap: wrap;
}
.ame-tp-section .ame-tp-control-group-children .wp-color-result {
margin-bottom: 0;
}
.ame-tp-section .ame-tp-control-group-children fieldset > p {
margin: 0 0 4px 0;
}
.ame-tp-section .ame-tp-section {
margin-bottom: 1.1538461538em;
}
.ame-tp-section .ame-tp-section-children .ame-tp-section-title {
font-size: 1.1538461538em;
border-width: 1px 0;
border-style: solid;
border-color: #ccc;
background: #f9f9f9;
padding-top: 3px;
padding-bottom: 4px;
/*margin-left: -$contentHorizontalPadding;
margin-right: -$contentHorizontalPadding;
padding-left: $contentHorizontalPadding;
padding-right: $contentHorizontalPadding;*/
}
.ame-tp-section .ame-tp-control-group-title {
padding-top: 4px;
}
.ame-tp-section .ame-tp-control-group {
margin-bottom: 1.0769230769em;
}
.ame-tp-section .ame-tp-control-group-children > label {
padding-top: 0.3846153846em;
}
.ame-tp-height-100.ame-tabbed-panel {
height: 100%;
}
.ame-tp-height-100 .ame-tp-content {
box-sizing: border-box;
height: 100%;
padding-right: 0;
}
.ame-tp-height-100 .ame-tp-content > .ui-tabs-panel {
box-sizing: border-box;
height: 100%;
overflow-y: auto;
padding-right: 12px;
}
.ame-tp-height-100 .ame-tp-tabs {
box-sizing: border-box;
height: 100%;
/*
Overflow must be visible or the "push the active tab over the border to hide the border"
trick won't work. Apparently, combining "overflow-x: visible" with "overflow-y: auto"
causes the browser to convert "visible" to "auto".
@see https://stackoverflow.com/questions/6421966/css-overflow-x-visible-and-overflow-y-hidden-causing-scrollbar-issue/6433475#6433475
*/
overflow-y: visible;
overflow-x: visible;
}
/*# sourceMappingURL=tabbed-panels.css.map */