1 /* ------------------------------------------------------------- */
2 /* MIXINS (mixins.less) */
3 /* ------------------------------------------------------------- */
5 // ----------------------------------------------------------------------------
7 // MIXINS (general sitewide properties)
9 // ----------------------------------------------------------------------------
11 // Mixins can be used like variables and be written like a CSS-class
12 // Do not apply these classes onto selectors but apply besides other properties
17 // - CONTENT-BLOCKS (Content-Boxes)
23 // ----------------------------------------------------------------------------
30 // Mixin, no class to apply in selectors
31 // see H3 in main.less
32 // see also Caption in tables.less
34 font-size : @table-caption-size ;
35 //font-style: @h3-style;
36 font-weight: @h3-weight;
37 color: @table-caption-color !important ;
38 padding: 0.2em 0 0.2em 0.2em;
39 margin: 0.1em 0 0.4em 0 ;
42 letter-spacing: 0.12em;
45 // -------------------
46 // Content-BLOCKS (Content-Boxes)
48 .mx-contentbox-properties {
49 margin: @contentbox-margin ;
50 padding: @contentbox-padding;
54 // --------------------------------------
56 // --------------------------------------
58 color: @t-cell-head-text ;
59 background-color: @t-cell-head-bg ;
60 border-top: 1px solid @table-border-color;
61 border-bottom: 1px solid @table-border-color;
63 vertical-align: middle ;
65 // --------------------------------------
67 // --------------------------------------
69 display: inline-block ;
73 font-size: @font-size-smaller ;
79 border-radius: @button-border-radius;
81 // -------------------
84 // for links, labels, buttons (no :link pseudo class)
86 border: @button-strong-border ;
87 background-color: @button-strong-bg ;
88 color: @button-strong-color ;
89 text-decoration: none;
91 // for hover, focus, active pseudo classes
92 .mx-button-standard-hover-focus{
94 border: @button-strong-hover-border ;
95 background-color: @button-strong-hover-bg;
96 color: @button-strong-hover-color;
97 text-decoration: none;
101 border : @button-strong-active-border ;
102 background-color: @button-strong-active-bg;
103 color: @button-strong-active-color;
104 text-decoration: none;
107 // -------------------
110 // for links, labels, buttons (no :link pseudo class)
112 border: @button-neutral-border ;
113 background-color: @button-neutral-bg;
114 color: @button-neutral-color;
116 // for hover, focus, active pseudo classes
117 .mx-button-neutral-hover-focus {
119 border: @button-neutral-hover-border ;
120 background-color: @button-neutral-hover-bg;
121 color: @button-neutral-hover-color;
122 text-decoration: none;
126 border: @button-neutral-active-border ;
127 background-color: @button-neutral-active-bg;
128 color: @button-neutral-active-color;
129 text-decoration: none;