]> git.proxmox.com Git - extjs.git/blame - extjs/classic/theme-base/sass/etc/mixins/border-management.scss
add extjs 6.0.1 sources
[extjs.git] / extjs / classic / theme-base / sass / etc / mixins / border-management.scss
CommitLineData
6527f429
DM
1@mixin border-management($parent-cls, $border-width, $border-color) {\r
2 .#{$prefix}#{$parent-cls}-outer-border-l {\r
3 border-left-color: left($border-color) !important;\r
4 border-left-width: left($border-width) !important;\r
5 }\r
6 .#{$prefix}#{$parent-cls}-outer-border-b {\r
7 border-bottom-color: bottom($border-color) !important;\r
8 border-bottom-width: bottom($border-width) !important;\r
9 }\r
10 .#{$prefix}#{$parent-cls}-outer-border-bl {\r
11 border-bottom-color: bottom($border-color) !important;\r
12 border-bottom-width: bottom($border-width) !important;\r
13 border-left-color: left($border-color) !important;\r
14 border-left-width: left($border-width) !important;\r
15 }\r
16 .#{$prefix}#{$parent-cls}-outer-border-r {\r
17 border-right-color: right($border-color) !important;\r
18 border-right-width: right($border-width) !important;\r
19 }\r
20 .#{$prefix}#{$parent-cls}-outer-border-rl {\r
21 border-right-color: right($border-color) !important;\r
22 border-right-width: right($border-width) !important;\r
23 border-left-color: left($border-color) !important;\r
24 border-left-width: left($border-width) !important;\r
25 }\r
26 .#{$prefix}#{$parent-cls}-outer-border-rb {\r
27 border-right-color: right($border-color) !important;\r
28 border-right-width: right($border-width) !important;\r
29 border-bottom-color: bottom($border-color) !important;\r
30 border-bottom-width: bottom($border-width) !important;\r
31 }\r
32 .#{$prefix}#{$parent-cls}-outer-border-rbl {\r
33 border-right-color: right($border-color) !important;\r
34 border-right-width: right($border-width) !important;\r
35 border-bottom-color: bottom($border-color) !important;\r
36 border-bottom-width: bottom($border-width) !important;\r
37 border-left-color: left($border-color) !important;\r
38 border-left-width: left($border-width) !important;\r
39 }\r
40 .#{$prefix}#{$parent-cls}-outer-border-t {\r
41 border-top-color: top($border-color) !important;\r
42 border-top-width: top($border-width) !important;\r
43 }\r
44 .#{$prefix}#{$parent-cls}-outer-border-tl {\r
45 border-top-color: top($border-color) !important;\r
46 border-top-width: top($border-width) !important;\r
47 border-left-color: left($border-color) !important;\r
48 border-left-width: left($border-width) !important;\r
49 }\r
50 .#{$prefix}#{$parent-cls}-outer-border-tb {\r
51 border-top-color: top($border-color) !important;\r
52 border-top-width: top($border-width) !important;\r
53 border-bottom-color: bottom($border-color) !important;\r
54 border-bottom-width: bottom($border-width) !important;\r
55 }\r
56 .#{$prefix}#{$parent-cls}-outer-border-tbl {\r
57 border-top-color: top($border-color) !important;\r
58 border-top-width: top($border-width) !important;\r
59 border-bottom-color: bottom($border-color) !important;\r
60 border-bottom-width: bottom($border-width) !important;\r
61 border-left-color: left($border-color) !important;\r
62 border-left-width: left($border-width) !important;\r
63 }\r
64 .#{$prefix}#{$parent-cls}-outer-border-tr {\r
65 border-top-color: top($border-color) !important;\r
66 border-top-width: top($border-width) !important;\r
67 border-right-color: right($border-color) !important;\r
68 border-right-width: right($border-width) !important;\r
69 }\r
70 .#{$prefix}#{$parent-cls}-outer-border-trl {\r
71 border-top-color: top($border-color) !important;\r
72 border-top-width: top($border-width) !important;\r
73 border-right-color: right($border-color) !important;\r
74 border-right-width: right($border-width) !important;\r
75 border-left-color: left($border-color) !important;\r
76 border-left-width: left($border-width) !important;\r
77 }\r
78 .#{$prefix}#{$parent-cls}-outer-border-trb {\r
79 border-top-color: top($border-color) !important;\r
80 border-top-width: top($border-width) !important;\r
81 border-right-color: right($border-color) !important;\r
82 border-right-width: right($border-width) !important;\r
83 border-bottom-color: bottom($border-color) !important;\r
84 border-bottom-width: bottom($border-width) !important;\r
85 }\r
86 .#{$prefix}#{$parent-cls}-outer-border-trbl {\r
87 border-color: $border-color !important;\r
88 border-width: $border-width !important;\r
89 }\r
90}