metro-ui-rails 0.15.8.13 → 0.15.8.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +15 -0
- data/Rakefile +6 -4
- data/lib/generators/metro/layout/templates/layout.html.erb +1 -1
- data/lib/metro/ui/rails/version.rb +1 -1
- data/vendor/assets/fonts/metro-ui/iconFont.eot +0 -0
- data/vendor/assets/fonts/metro-ui/iconFont.svg +26 -20
- data/vendor/assets/fonts/metro-ui/iconFont.ttf +0 -0
- data/vendor/assets/fonts/metro-ui/iconFont.woff +0 -0
- data/vendor/assets/javascripts/jquery.mousewheel.min.js +84 -0
- data/vendor/assets/javascripts/metro-ui/calendar.js +557 -0
- data/vendor/assets/javascripts/metro-ui/dialog.js +1 -1
- data/vendor/assets/javascripts/metro-ui/input-control.js +3 -3
- data/vendor/assets/javascripts/metro-ui/slider.js +2 -2
- data/vendor/assets/javascripts/metro-ui/tile-drag.js +5 -1
- data/vendor/assets/javascripts/metro-ui.js +9 -7
- data/vendor/toolkit/metro-ui/accordion.less +3 -2
- data/vendor/toolkit/metro-ui/bricks.less +2 -2
- data/vendor/toolkit/metro-ui/buttons.less +26 -17
- data/vendor/toolkit/metro-ui/calendar.less +81 -0
- data/vendor/toolkit/metro-ui/cards.less +18 -12
- data/vendor/toolkit/metro-ui/carousel.less +2 -3
- data/vendor/toolkit/metro-ui/code.less +2 -2
- data/vendor/toolkit/metro-ui/colors.less +21 -5
- data/vendor/toolkit/metro-ui/dialog.less +16 -16
- data/vendor/toolkit/metro-ui/forms.less +57 -32
- data/vendor/toolkit/metro-ui/grid.less +2 -2
- data/vendor/toolkit/metro-ui/hero.less +2 -2
- data/vendor/toolkit/metro-ui/icons.less +519 -1126
- data/vendor/toolkit/metro-ui/images.less +3 -3
- data/vendor/toolkit/metro-ui/layout.less +13 -9
- data/vendor/toolkit/metro-ui/listview.less +4 -3
- data/vendor/toolkit/metro-ui/menus.less +14 -7
- data/vendor/toolkit/metro-ui/modern-responsive-max480.less +7 -4
- data/vendor/toolkit/metro-ui/modern-responsive-max767.less +8 -3
- data/vendor/toolkit/metro-ui/modern-responsive-max979.less +8 -4
- data/vendor/toolkit/metro-ui/modern-responsive-min1200.less +9 -3
- data/vendor/toolkit/metro-ui/modern-responsive.less +4 -3
- data/vendor/toolkit/metro-ui/modern.less +32 -30
- data/vendor/toolkit/metro-ui/notices.less +6 -2
- data/vendor/toolkit/metro-ui/pagecontrol.less +5 -4
- data/vendor/toolkit/metro-ui/progress.less +4 -3
- data/vendor/toolkit/metro-ui/rating.less +4 -3
- data/vendor/toolkit/metro-ui/routines.less +12 -2
- data/vendor/toolkit/metro-ui/sidebar.less +4 -3
- data/vendor/toolkit/metro-ui/slider.less +2 -2
- data/vendor/toolkit/metro-ui/tables.less +2 -2
- data/vendor/toolkit/metro-ui/theme-dark.less +3 -3
- data/vendor/toolkit/metro-ui/tiles.less +7 -2
- data/vendor/toolkit/metro-ui/typography.less +50 -11
- metadata +8 -12
@@ -1,12 +1,12 @@
|
|
1
1
|
/*
|
2
2
|
* Metro UI CSS
|
3
|
-
*
|
4
|
-
* Licensed under the MIT License
|
3
|
+
* (c) 2012-2013 by Sergey Pimenov
|
4
|
+
* Licensed under the MIT License and Commercial
|
5
5
|
*
|
6
6
|
* Layout.less
|
7
|
+
*
|
7
8
|
*/
|
8
9
|
|
9
|
-
|
10
10
|
*, *:after, *:before {
|
11
11
|
-webkit-box-sizing: border-box;
|
12
12
|
-moz-box-sizing: border-box;
|
@@ -103,25 +103,29 @@
|
|
103
103
|
border: 1px #ccc solid;
|
104
104
|
width: 40px;
|
105
105
|
height: 40px;
|
106
|
-
img {
|
106
|
+
img, [class^="icon-"], [class*=" icon-"] {
|
107
107
|
width: 100%;
|
108
108
|
height: 100%;
|
109
109
|
}
|
110
|
+
[class^="icon-"], [class*=" icon-"] {
|
111
|
+
margin-top: 2px;
|
112
|
+
font-size: 30px;
|
113
|
+
line-height: 30px;
|
114
|
+
display: block;
|
115
|
+
}
|
110
116
|
}
|
111
117
|
.name {
|
112
118
|
float: left;
|
113
|
-
margin:
|
119
|
+
margin: -5px 10px 0;
|
114
120
|
text-align: right;
|
115
121
|
|
116
122
|
.first-name {
|
117
|
-
font
|
118
|
-
font-size: 18pt;
|
123
|
+
#font > .subheader;
|
119
124
|
display: block;
|
120
125
|
margin: 0;
|
121
126
|
}
|
122
127
|
.last-name {
|
123
|
-
font
|
124
|
-
font-size: 10pt;
|
128
|
+
#font > .tertiary;
|
125
129
|
display: block;
|
126
130
|
margin: 0;
|
127
131
|
}
|
@@ -1,11 +1,12 @@
|
|
1
1
|
/*
|
2
2
|
* Metro UI CSS
|
3
|
-
*
|
4
|
-
* Licensed under the MIT License
|
3
|
+
* (c) 2012-2013 by Sergey Pimenov
|
4
|
+
* Licensed under the MIT License and Commercial
|
5
5
|
*
|
6
6
|
* ListView.less
|
7
|
-
*
|
7
|
+
*
|
8
8
|
*/
|
9
|
+
|
9
10
|
.listview {
|
10
11
|
.unstyled;
|
11
12
|
|
@@ -1,10 +1,10 @@
|
|
1
1
|
/*
|
2
2
|
* Metro UI CSS
|
3
|
-
*
|
4
|
-
* Licensed under the MIT License
|
3
|
+
* (c) 2012-2013 by Sergey Pimenov
|
4
|
+
* Licensed under the MIT License and Commercial
|
5
5
|
*
|
6
6
|
* Menus.less
|
7
|
-
*
|
7
|
+
*
|
8
8
|
*/
|
9
9
|
|
10
10
|
.dropdown-menu {
|
@@ -19,6 +19,7 @@
|
|
19
19
|
min-width: 160px;
|
20
20
|
padding-bottom: 5px;
|
21
21
|
padding-top: 5px;
|
22
|
+
padding-left: 0;
|
22
23
|
display: none;
|
23
24
|
|
24
25
|
&.place-right {
|
@@ -116,9 +117,9 @@
|
|
116
117
|
& > li {
|
117
118
|
display: block;
|
118
119
|
float: left;
|
119
|
-
margin-right:
|
120
|
+
margin-right: 5px;
|
120
121
|
position: relative;
|
121
|
-
padding: 5px;
|
122
|
+
padding: 5px 15px 5px 5px;
|
122
123
|
|
123
124
|
a {
|
124
125
|
display: block;
|
@@ -127,9 +128,12 @@
|
|
127
128
|
font-size: 10pt;
|
128
129
|
}
|
129
130
|
|
131
|
+
//&.active {background: #fff; a {color: #000;}}
|
132
|
+
|
130
133
|
ul.dropdown-menu {
|
131
|
-
|
134
|
+
z-index: 1001;
|
132
135
|
border: 0;
|
136
|
+
left: 0px;
|
133
137
|
li {
|
134
138
|
|
135
139
|
a {
|
@@ -166,7 +170,7 @@
|
|
166
170
|
display: block;
|
167
171
|
font-size: 1.4em;
|
168
172
|
left: 100%;
|
169
|
-
margin-left:
|
173
|
+
margin-left: -10px;
|
170
174
|
top: 8px;
|
171
175
|
.rotate(90deg);
|
172
176
|
}
|
@@ -218,6 +222,9 @@
|
|
218
222
|
&.bg-color-white .nav-bar-inner .element {color: @darken !important;}
|
219
223
|
&.bg-color-white .nav-bar-inner .pull-menu {color: @darken !important;}
|
220
224
|
&.bg-color-grayDark .nav-bar-inner .menu li a:hover {background-color: @grayDark !important;}
|
225
|
+
&.bg-color-magenta .nav-bar-inner .menu li a:hover {background-color: @magenta !important;}
|
226
|
+
&.bg-color-teal .nav-bar-inner .menu li a:hover {background-color: @teal !important;}
|
227
|
+
&.bg-color-redLight .nav-bar-inner .menu li a:hover {background-color: @redLight !important;}
|
221
228
|
|
222
229
|
.clearfix;
|
223
230
|
}
|
@@ -1,14 +1,17 @@
|
|
1
1
|
/*
|
2
2
|
* Metro UI CSS
|
3
|
-
*
|
4
|
-
* Licensed under the MIT License
|
3
|
+
* (c) 2012-2013 by Sergey Pimenov
|
4
|
+
* Licensed under the MIT License and Commercial
|
5
|
+
*
|
6
|
+
* Responsive-480.less
|
5
7
|
*
|
6
|
-
* responsive.less
|
7
8
|
*/
|
8
9
|
|
9
10
|
/* Landscape phones and down */
|
10
11
|
|
11
12
|
@media (max-width: 480px) {
|
13
|
+
.metrouicss {
|
14
|
+
|
12
15
|
.page.secondary {
|
13
16
|
.page-back {
|
14
17
|
width: 24px;
|
@@ -143,5 +146,5 @@
|
|
143
146
|
max-width: 400px;
|
144
147
|
float: none;
|
145
148
|
}
|
146
|
-
|
149
|
+
}
|
147
150
|
}
|
@@ -1,9 +1,10 @@
|
|
1
1
|
/*
|
2
2
|
* Metro UI CSS
|
3
|
-
*
|
4
|
-
* Licensed under the MIT License
|
3
|
+
* (c) 2012-2013 by Sergey Pimenov
|
4
|
+
* Licensed under the MIT License and Commercial
|
5
|
+
*
|
6
|
+
* Responsive-767.less
|
5
7
|
*
|
6
|
-
* responsive.less
|
7
8
|
*/
|
8
9
|
|
9
10
|
/* Landscape phone to portrait tablet */
|
@@ -23,6 +24,8 @@
|
|
23
24
|
padding-left: 10px !important; //TODO найти и уничтожить
|
24
25
|
}
|
25
26
|
|
27
|
+
.metrouicss {
|
28
|
+
|
26
29
|
[class*="span"], .hero-unit {
|
27
30
|
float: none;
|
28
31
|
display: block;
|
@@ -249,4 +252,6 @@
|
|
249
252
|
}
|
250
253
|
}
|
251
254
|
}
|
255
|
+
|
256
|
+
}
|
252
257
|
}
|
@@ -1,13 +1,17 @@
|
|
1
1
|
/*
|
2
2
|
* Metro UI CSS
|
3
|
-
*
|
4
|
-
* Licensed under the MIT License
|
3
|
+
* (c) 2012-2013 by Sergey Pimenov
|
4
|
+
* Licensed under the MIT License and Commercial
|
5
|
+
*
|
6
|
+
* Responsive-979.less
|
5
7
|
*
|
6
|
-
* responsive.less
|
7
8
|
*/
|
8
9
|
|
9
10
|
/* Portrait tablet to landscape and desktop */
|
10
11
|
@media (min-width: 768px) and (max-width: 979px) {
|
12
|
+
|
13
|
+
.metrouicss {
|
14
|
+
|
11
15
|
.span1 {width: 42px;}
|
12
16
|
.span2 {width: 104px;}
|
13
17
|
.span3 {width: 166px;}
|
@@ -94,5 +98,5 @@
|
|
94
98
|
|
95
99
|
}
|
96
100
|
}
|
97
|
-
|
101
|
+
}
|
98
102
|
}
|
@@ -1,17 +1,22 @@
|
|
1
1
|
/*
|
2
2
|
* Metro UI CSS
|
3
|
-
*
|
4
|
-
* Licensed under the MIT License
|
3
|
+
* (c) 2012-2013 by Sergey Pimenov
|
4
|
+
* Licensed under the MIT License and Commercial
|
5
|
+
*
|
6
|
+
* Responsive-1200.less
|
5
7
|
*
|
6
|
-
* responsive.less
|
7
8
|
*/
|
8
9
|
|
9
10
|
/* Large desktop */
|
11
|
+
|
10
12
|
@media (min-width: 1200px) {
|
13
|
+
.metrouicss {
|
11
14
|
|
15
|
+
}
|
12
16
|
}
|
13
17
|
|
14
18
|
@media (min-width: 980px) {
|
19
|
+
.metrouicss {
|
15
20
|
.nav-bar {
|
16
21
|
.nav-bar-inner {
|
17
22
|
.pull-menu {
|
@@ -22,6 +27,7 @@
|
|
22
27
|
}
|
23
28
|
}
|
24
29
|
}
|
30
|
+
}
|
25
31
|
}
|
26
32
|
|
27
33
|
|
@@ -1,9 +1,10 @@
|
|
1
1
|
/*
|
2
2
|
* Metro UI CSS
|
3
|
-
*
|
4
|
-
* Licensed under the MIT License
|
3
|
+
* (c) 2012-2013 by Sergey Pimenov
|
4
|
+
* Licensed under the MIT License and Commercial
|
5
|
+
*
|
6
|
+
* Responsive.less
|
5
7
|
*
|
6
|
-
* responsive.less
|
7
8
|
*/
|
8
9
|
|
9
10
|
@import "colors.less";
|
@@ -1,36 +1,38 @@
|
|
1
1
|
/*
|
2
|
-
* Metro UI CSS
|
3
|
-
*
|
4
|
-
* Licensed under the MIT License
|
2
|
+
* Metro UI CSS
|
3
|
+
* (c) 2012-2013 by Sergey Pimenov
|
4
|
+
* Licensed under the MIT License and Commercial
|
5
5
|
*/
|
6
6
|
|
7
7
|
@import "reset.less";
|
8
8
|
|
9
|
-
|
10
|
-
@import "
|
11
|
-
@import "
|
12
|
-
@import "
|
13
|
-
@import "
|
14
|
-
@import "
|
15
|
-
@import "
|
16
|
-
@import "
|
17
|
-
@import "
|
18
|
-
|
19
|
-
@import "hero.less";
|
20
|
-
@import "menus.less";
|
21
|
-
@import "sidebar.less";
|
22
|
-
@import "notices.less";
|
23
|
-
@import "tiles.less";
|
24
|
-
@import "forms.less";
|
25
|
-
@import "images.less";
|
26
|
-
@import "cards.less";
|
27
|
-
@import "code.less";
|
28
|
-
@import "pagecontrol.less";
|
29
|
-
@import "accordion.less";
|
30
|
-
@import "rating.less";
|
31
|
-
@import "progress.less";
|
32
|
-
@import "carousel.less";
|
33
|
-
@import "listview.less";
|
34
|
-
@import "slider.less";
|
35
|
-
@import "dialog.less";
|
9
|
+
.metrouicss {
|
10
|
+
@import "typography.less";
|
11
|
+
@import "routines.less";
|
12
|
+
@import "icons.less";
|
13
|
+
@import "colors.less";
|
14
|
+
@import "bricks.less";
|
15
|
+
@import "layout.less";
|
16
|
+
@import "buttons.less";
|
17
|
+
@import "tables.less";
|
18
|
+
@import "grid.less";
|
36
19
|
|
20
|
+
@import "hero.less";
|
21
|
+
@import "menus.less";
|
22
|
+
@import "sidebar.less";
|
23
|
+
@import "notices.less";
|
24
|
+
@import "tiles.less";
|
25
|
+
@import "forms.less";
|
26
|
+
@import "images.less";
|
27
|
+
@import "cards.less";
|
28
|
+
@import "code.less";
|
29
|
+
@import "pagecontrol.less";
|
30
|
+
@import "accordion.less";
|
31
|
+
@import "rating.less";
|
32
|
+
@import "progress.less";
|
33
|
+
@import "carousel.less";
|
34
|
+
@import "listview.less";
|
35
|
+
@import "slider.less";
|
36
|
+
@import "dialog.less";
|
37
|
+
@import "calendar.less";
|
38
|
+
}
|
@@ -1,9 +1,10 @@
|
|
1
1
|
/*
|
2
2
|
* Metro UI CSS
|
3
|
-
*
|
4
|
-
* Licensed under the MIT License
|
3
|
+
* (c) 2012-2013 by Sergey Pimenov
|
4
|
+
* Licensed under the MIT License and Commercial
|
5
5
|
*
|
6
6
|
* Notices.less
|
7
|
+
*
|
7
8
|
*/
|
8
9
|
|
9
10
|
.replies {
|
@@ -84,6 +85,9 @@
|
|
84
85
|
.sticker.sticker-color-white {border-color: @white !important;}
|
85
86
|
.sticker.sticker-color-lighten {border-color: @lighten !important;}
|
86
87
|
.sticker.sticker-color-grayDark {border-color: @grayDark !important;}
|
88
|
+
.sticker.sticker-color-magenta {border-color: @magenta !important;}
|
89
|
+
.sticker.sticker-color-teal {border-color: @teal !important;}
|
90
|
+
.sticker.sticker-color-redLight {border-color: @redLight !important;}
|
87
91
|
|
88
92
|
.sticker.sticker-left {
|
89
93
|
border-left: 20px solid transparent !important;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
/*
|
2
2
|
* Metro UI CSS
|
3
|
-
*
|
4
|
-
* Licensed under the MIT License
|
3
|
+
* (c) 2012-2013 by Sergey Pimenov
|
4
|
+
* Licensed under the MIT License and Commercial
|
5
5
|
*
|
6
6
|
* PageControl.less
|
7
7
|
*
|
@@ -18,7 +18,7 @@
|
|
18
18
|
z-index: 5;
|
19
19
|
width: 100%;
|
20
20
|
background-color: rgba(217, 217, 217, 0.16);
|
21
|
-
height:
|
21
|
+
height: 31px;
|
22
22
|
|
23
23
|
li:first-child {
|
24
24
|
margin-left: 20px;
|
@@ -28,6 +28,7 @@
|
|
28
28
|
float: left;
|
29
29
|
display: block;
|
30
30
|
text-align: center;
|
31
|
+
height: 100%;
|
31
32
|
|
32
33
|
img {
|
33
34
|
float: left;
|
@@ -70,7 +71,7 @@
|
|
70
71
|
}
|
71
72
|
|
72
73
|
.frames {
|
73
|
-
margin-top:
|
74
|
+
margin-top: 30px;
|
74
75
|
width: 100%;
|
75
76
|
min-height: 50px;
|
76
77
|
border: 1px #ccc solid;
|
@@ -1,9 +1,10 @@
|
|
1
1
|
/*
|
2
2
|
* Metro UI CSS
|
3
|
-
*
|
4
|
-
* Licensed under the MIT License
|
3
|
+
* (c) 2012-2013 by Sergey Pimenov
|
4
|
+
* Licensed under the MIT License and Commercial
|
5
|
+
*
|
6
|
+
* Rating.less
|
5
7
|
*
|
6
|
-
* rating.less
|
7
8
|
*/
|
8
9
|
|
9
10
|
@image_big_star: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAABOCAYAAADRl20RAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OUMwOUI4NjQxQ0Y1MTFFMjlGOThBQTVDRENEQURDNUQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OUMwOUI4NjUxQ0Y1MTFFMjlGOThBQTVDRENEQURDNUQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5QzAwNDIyNjFDRjUxMUUyOUY5OEFBNUNEQ0RBREM1RCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5QzAwNDIyNzFDRjUxMUUyOUY5OEFBNUNEQ0RBREM1RCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PmSPr8EAAASsSURBVHjavFlpiFNXFE6eMWaqcaGjMSOtrfpLrYpLcSqKqKh16kKeMg6jiFNLR4SCIEp/tBSFUmhBwQX/uNA/LpWWYq1iW1CxWLQVFRxkHNzTwaWdcamijsbvpCdwfd68d89N3hz4SPK27517z/Ldm2hVVVVEaFHgLeCy9EYnIrdK4G2L+6zIaCi6A73DJqPr0/x9QNhkfYGuiofRMMlUbxLA62GRdQFSmvkLhawfENOQOWGQ6QKiK8+jkcUEF6eKHB8IPDe4/xmRJYGh0sjyvEQq4JqHwCkiuwTcBcYA3SLlt1vAaeBpYc7+AY4BbWUmugicJKJ8OCeTycKJDuAGe9e7RJKn7M0Vb4CoRhN9DmgH3rGsnfdpfoD/dNGos2vAPWAsUCEg+hs4y6MkyjPyrklA1MFD12Gb1CkBWSyoVjoB51LC+UrbklUq7cTU+vsVB8fiLSlJzwCPNeeo7fTxG+dioqa/JneaOFLJbgLDNQWaXvJfiWc00XHl923gqEJE9oSj70+Pl2mpZ2klnM97SLzWyuWu4GUFV6B2E7Iok5E3Z1sbVz4yCIy8l+mt6ympR3BTfYUsqhGpPWmSQXI1IIq1PQyENPyDgAsmc0Zl6mqAFllRdEwbVz4BLmjnLJvN6l993TfFnjcF+ATY6DeuuufaVPWFwBDg3bBFKs1Hhr/Xhk02Q2msC6X3OxZDqGrGSWGRvQbM8RyrC4usBujhOeZKOoNjOYRqDZ1uvGSNrv16mmEX/oFbiNcOABsMnvGQHjIS+MqnKJsMb03ANSSEM9FcLkfVYjJ+7JUsEgR2EKh//tmqtvyc4csRfIxm9VouywHrgA+IKD9n5JlSD7txzfuoRCJaOywGyf6XAkQlU0g/xMdmy4UGNdsMiJqNQh8XbsPHROC6kIjmfTzQLM0z0uurBUTUB+uBB7ZJXSMg6xlUK/3IaL5mC4cxY0s2FehlQebYkLlFjh8CGlgZ6yRgtYgMoU+la64mdygl3gd2AMOAPYKXLOrZZM/y5xCvRLcrx+5wJ3BZiqtkUQmZq4TzMmCWT859z2p4N/9+k1eswfIbQ0gvMA84TESDqqtNEpu8rLt04sR3+NwCzOc8DfSM5PPnwEwfIu2I4PqCl4+1zVNXG8mG/Pp7MS9IBnwMbPJztWXahLKIVJIBy21agQ1ZLe91jQqbLMHB0ymKuIZ38QqaMdQ9YlXODfQrTaWSJTm5O0URz2EJrtoCXhx2iiJO8eLQTBEP/uW4iSKOsyKOa879GJTgbA9irBe/lAyHx+Zq2pHXaEfVzZcrlKapXLUrQ1DEP5GGRPlqd7iO/Rb5f0P6rzKS0NbFFxRYRPRKIYaHCRanDSUS0cPrQfJzYNUHaSMvg2wUMe0xuyBqMQp9XLiVpUFWSLQLeI8eIc2zP4BPBUS0UlkU0ex6h6GIaVNzgm0FSQjJSlLEMzS7A0HmRiz3iF2fJCV5d1tz7g1gnIgMoR/XLCooAJbw8W2sovZpbp8v9WxK5OU/fw6wIv5WOXaLW0ytx8uMlGyBUgmW0iLcJ+f2erwcXEwMOZohjHGjPMgP2WkQGF4vXVPP6K3WsASQVpCCl9r94xcCDACHgA63y6lwZwAAAABJRU5ErkJggg%3D%3D);
|
@@ -1,9 +1,10 @@
|
|
1
1
|
/*
|
2
2
|
* Metro UI CSS
|
3
|
-
*
|
4
|
-
* Licensed under the MIT License
|
3
|
+
* (c) 2012-2013 by Sergey Pimenov
|
4
|
+
* Licensed under the MIT License and Commercial
|
5
5
|
*
|
6
6
|
* Routines.less
|
7
|
+
*
|
7
8
|
*/
|
8
9
|
|
9
10
|
.place-left {float: left !important; margin-right: 10px;}
|
@@ -47,6 +48,15 @@
|
|
47
48
|
|
48
49
|
.no-overflow {overflow: hidden;}
|
49
50
|
.no-display {display: none;}
|
51
|
+
.no-margin {margin: 0;}
|
52
|
+
.no-padding {padding: 0;}
|
53
|
+
.no-border {border: 0;}
|
54
|
+
.no-border-all {
|
55
|
+
border: 0;
|
56
|
+
* {
|
57
|
+
border: 0;
|
58
|
+
}
|
59
|
+
}
|
50
60
|
.as-block {display: block; float: none !important;}
|
51
61
|
.as-inline-block {display: inline-block;}
|
52
62
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
/*
|
2
2
|
* Metro UI CSS
|
3
|
-
*
|
4
|
-
* Licensed under the MIT License
|
3
|
+
* (c) 2012-2013 by Sergey Pimenov
|
4
|
+
* Licensed under the MIT License and Commercial
|
5
5
|
*
|
6
6
|
* Tiles.less
|
7
7
|
*
|
@@ -78,6 +78,9 @@
|
|
78
78
|
color: @white;
|
79
79
|
}
|
80
80
|
|
81
|
+
h1,h2,h3,h4,h5,h6 {
|
82
|
+
font-size: 14pt;
|
83
|
+
}
|
81
84
|
h1,h2,h3,h4,h5,h6,p {
|
82
85
|
padding: 0;
|
83
86
|
margin: 0;
|
@@ -286,6 +289,8 @@
|
|
286
289
|
color: @white;
|
287
290
|
line-height: 14px;
|
288
291
|
width: 60%;
|
292
|
+
padding: 0;
|
293
|
+
margin: 0;
|
289
294
|
|
290
295
|
&:hover {
|
291
296
|
color: @white;
|