uikit-sass-rails 1.1.0 → 1.2.0
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 +4 -4
- data/CHANGELOG.md +5 -1
- data/lib/uikit/sass/rails/version.rb +1 -1
- data/vendor/assets/fonts/fontawesome-webfont.eot +0 -0
- data/vendor/assets/fonts/fontawesome-webfont.otf +0 -0
- data/vendor/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/vendor/assets/fonts/fontawesome-webfont.woff +0 -0
- data/vendor/assets/javascripts/uikit.js +1 -0
- data/vendor/assets/javascripts/uikit/addons/autocomplete.js +1 -1
- data/vendor/assets/javascripts/uikit/addons/cover.js +1 -1
- data/vendor/assets/javascripts/uikit/addons/datepicker.js +1 -1
- data/vendor/assets/javascripts/uikit/addons/form-password.js +1 -1
- data/vendor/assets/javascripts/uikit/addons/form-select.js +1 -1
- data/vendor/assets/javascripts/uikit/addons/htmleditor.js +1 -1
- data/vendor/assets/javascripts/uikit/addons/nestable.js +1 -1
- data/vendor/assets/javascripts/uikit/addons/notify.js +1 -1
- data/vendor/assets/javascripts/uikit/addons/pagination.js +1 -1
- data/vendor/assets/javascripts/uikit/addons/search.js +1 -1
- data/vendor/assets/javascripts/uikit/addons/sortable.js +12 -6
- data/vendor/assets/javascripts/uikit/addons/sticky.js +2 -3
- data/vendor/assets/javascripts/uikit/addons/timepicker.js +1 -1
- data/vendor/assets/javascripts/uikit/addons/upload.js +4 -1
- data/vendor/assets/javascripts/uikit/uikit.js +5 -7
- data/vendor/assets/stylesheets/extra/font-awesome.scss +2 -1
- data/vendor/assets/stylesheets/uikit/addons/uikit.addons.scss +61 -27
- data/vendor/assets/stylesheets/uikit/addons/uikit.almost-flat.addons.scss +61 -27
- data/vendor/assets/stylesheets/uikit/addons/uikit.gradient.addons.scss +65 -31
- data/vendor/assets/stylesheets/uikit/uikit.almost-flat.scss +579 -526
- data/vendor/assets/stylesheets/uikit/uikit.gradient.scss +589 -536
- data/vendor/assets/stylesheets/uikit/uikit.scss +573 -518
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b626e9b61642192657b57527e121206bfa6b6152
|
4
|
+
data.tar.gz: bd17764a5fe56abfe8d47bc9b6d178e57d04f4c9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9deb1dd9e1dc01e1c444d8c71ea60d15fc3b1ee42be5571ea3d23b47a63f8818ad0d198b81f995911778f81a7af3954e35c111a6763f4fbb013ddc2e035b7738
|
7
|
+
data.tar.gz: 3174e72246f7db3686b6fa46a55ef80a36ddccee1daaeb4c0f8fa8f0220e09ce28d18ace8520854b1f44772b0294c4d4137bb54c4bd6de3ecea8500bfe18d451
|
data/CHANGELOG.md
CHANGED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,4 +1,4 @@
|
|
1
|
-
/*! UIkit 2.
|
1
|
+
/*! UIkit 2.10.0 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
|
2
2
|
|
3
3
|
/*
|
4
4
|
* Based on simplePagination - Copyright (c) 2012 Flavius Matis - http://flaviusmatis.github.com/simplePagination.js/ (MIT)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
/*! UIkit 2.
|
1
|
+
/*! UIkit 2.10.0 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
|
2
2
|
|
3
3
|
/*
|
4
4
|
* Based on nativesortable - Copyright (c) Brian Grinstead - https://github.com/bgrins/nativesortable
|
@@ -66,13 +66,19 @@
|
|
66
66
|
|
67
67
|
} else {
|
68
68
|
|
69
|
+
// prevent leaving page after link clicking
|
69
70
|
// prevent leaving page after link clicking
|
70
71
|
this.element.on('mousedown touchstart', 'a[href]', function(e) {
|
71
|
-
|
72
|
+
// don't break browser shortcuts for click+open in new tab
|
73
|
+
if(!e.ctrlKey && !e.metaKey && !e.shiftKey) {
|
74
|
+
clickedlink = $(this);
|
75
|
+
}
|
72
76
|
}).on('click', 'a[href]', function(e) {
|
73
|
-
|
74
|
-
|
75
|
-
|
77
|
+
if(!e.ctrlKey && !e.metaKey && !e.shiftKey) {
|
78
|
+
clickedlink = $(this);
|
79
|
+
e.stopImmediatePropagation();
|
80
|
+
return false;
|
81
|
+
}
|
76
82
|
});
|
77
83
|
}
|
78
84
|
|
@@ -511,4 +517,4 @@
|
|
511
517
|
});
|
512
518
|
|
513
519
|
return UI.sortable;
|
514
|
-
});
|
520
|
+
});
|
@@ -1,4 +1,4 @@
|
|
1
|
-
/*! UIkit 2.
|
1
|
+
/*! UIkit 2.10.0 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
|
2
2
|
|
3
3
|
(function(addon) {
|
4
4
|
|
@@ -35,8 +35,7 @@
|
|
35
35
|
|
36
36
|
init: function() {
|
37
37
|
|
38
|
-
var
|
39
|
-
wrapper = $('<div class="uk-sticky-placeholder"></div>').css({
|
38
|
+
var wrapper = $('<div class="uk-sticky-placeholder"></div>').css({
|
40
39
|
'height' : this.element.css('position') != 'absolute' ? this.element.outerHeight() : '',
|
41
40
|
'float' : this.element.css("float") != "none" ? this.element.css("float") : '',
|
42
41
|
'margin' : this.element.css("margin")
|
@@ -1,4 +1,4 @@
|
|
1
|
-
/*! UIkit 2.
|
1
|
+
/*! UIkit 2.10.0 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
|
2
2
|
|
3
3
|
(function(addon) {
|
4
4
|
|
@@ -25,6 +25,9 @@
|
|
25
25
|
|
26
26
|
this.on("change", function() {
|
27
27
|
xhrupload($this.element[0].files, $this.options);
|
28
|
+
var twin = $this.element.clone(true).data('uploadSelect', $this);
|
29
|
+
$this.element.replaceWith(twin);
|
30
|
+
$this.element = twin;
|
28
31
|
});
|
29
32
|
}
|
30
33
|
});
|
@@ -1,4 +1,4 @@
|
|
1
|
-
/*! UIkit 2.
|
1
|
+
/*! UIkit 2.10.0 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
|
2
2
|
|
3
3
|
(function(core) {
|
4
4
|
|
@@ -48,7 +48,7 @@
|
|
48
48
|
return UI;
|
49
49
|
}
|
50
50
|
|
51
|
-
UI.version = '2.
|
51
|
+
UI.version = '2.10.0';
|
52
52
|
UI.$doc = $doc;
|
53
53
|
UI.$win = $win;
|
54
54
|
|
@@ -905,7 +905,7 @@
|
|
905
905
|
if ($this.element.is('a[href="#"]')) e.preventDefault();
|
906
906
|
|
907
907
|
$this.toggle();
|
908
|
-
$this.trigger("change", [$element.blur().hasClass("uk-active")]);
|
908
|
+
$this.trigger("change", [$this.element.blur().hasClass("uk-active")]);
|
909
909
|
});
|
910
910
|
|
911
911
|
},
|
@@ -954,6 +954,7 @@
|
|
954
954
|
|
955
955
|
})(jQuery, jQuery.UIkit);
|
956
956
|
|
957
|
+
|
957
958
|
(function($, UI) {
|
958
959
|
|
959
960
|
"use strict";
|
@@ -2245,7 +2246,6 @@
|
|
2245
2246
|
if (children.length < 2) return;
|
2246
2247
|
|
2247
2248
|
var top = (children.eq(0).offset().top + Math.ceil(children.eq(0).height()/2)),
|
2248
|
-
added = 0,
|
2249
2249
|
doresponsive = false,
|
2250
2250
|
item, link;
|
2251
2251
|
|
@@ -2253,9 +2253,7 @@
|
|
2253
2253
|
|
2254
2254
|
children.each(function(){
|
2255
2255
|
|
2256
|
-
|
2257
|
-
|
2258
|
-
if (item.offset().top > top || (added && this.responsivetab.offset().top > top)) {
|
2256
|
+
if ($(this).offset().top > top) {
|
2259
2257
|
doresponsive = true;
|
2260
2258
|
}
|
2261
2259
|
});
|
@@ -1,4 +1,5 @@
|
|
1
1
|
//= depend_on_asset "fontawesome-webfont.eot"
|
2
|
+
//= depend_on_asset "fontawesome-webfont.otf"
|
2
3
|
//= depend_on_asset "fontawesome-webfont.svg"
|
3
4
|
//= depend_on_asset "fontawesome-webfont.ttf"
|
4
5
|
//= depend_on_asset "fontawesome-webfont.woff"
|
@@ -6,8 +7,8 @@
|
|
6
7
|
@font-face {
|
7
8
|
font-family: "FontAwesome";
|
8
9
|
src: font-url("fontawesome-webfont.eot");
|
9
|
-
src: font-url("fontawesome-webfont.eot");
|
10
10
|
src: font-url("fontawesome-webfont.eot?#iefix") format("embedded-opentype"),
|
11
|
+
font-url("fontawesome-webfont.otf") format("opentype"),
|
11
12
|
font-url("fontawesome-webfont.woff") format("woff"),
|
12
13
|
font-url("fontawesome-webfont.ttf") format("truetype"),
|
13
14
|
font-url("fontawesome-webfont.svg#fontcustom") format("svg");
|
@@ -1,4 +1,4 @@
|
|
1
|
-
/*! UIkit 2.
|
1
|
+
/*! UIkit 2.10.0 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
|
2
2
|
|
3
3
|
/* ========================================================================
|
4
4
|
Component: Dotnav
|
@@ -1087,39 +1087,49 @@ a.uk-datepicker-table-muted {
|
|
1087
1087
|
/* Sub-object `uk-search-field`
|
1088
1088
|
========================================================================== */
|
1089
1089
|
/*
|
1090
|
-
*
|
1090
|
+
* Removes inner padding and border in Firefox 4+.
|
1091
1091
|
*/
|
1092
1092
|
|
1093
1093
|
.uk-search-field {
|
1094
|
+
&::-moz-focus-inner {
|
1095
|
+
border: 0;
|
1096
|
+
padding: 0;
|
1097
|
+
}
|
1098
|
+
&::-webkit-search-cancel-button, &::-webkit-search-decoration {
|
1099
|
+
-webkit-appearance: none;
|
1100
|
+
}
|
1101
|
+
&::-ms-clear {
|
1102
|
+
display: none;
|
1103
|
+
}
|
1104
|
+
&::-moz-placeholder {
|
1105
|
+
opacity: 1;
|
1106
|
+
}
|
1107
|
+
/* 1 */
|
1108
|
+
-moz-box-sizing: border-box;
|
1109
|
+
box-sizing: border-box;
|
1110
|
+
/* 2 */
|
1111
|
+
margin: 0;
|
1112
|
+
/* 3 */
|
1113
|
+
border-radius: 0;
|
1114
|
+
/* 4 */
|
1115
|
+
font: inherit;
|
1116
|
+
color: #444444;
|
1117
|
+
/* 5 */
|
1118
|
+
-webkit-appearance: none;
|
1119
|
+
/* 6 */
|
1094
1120
|
width: 120px;
|
1095
1121
|
height: 30px;
|
1096
1122
|
padding: 0 0 0 30px;
|
1097
1123
|
border: 1px solid rgba(0, 0, 0, 0);
|
1098
1124
|
background: rgba(0, 0, 0, 0);
|
1099
|
-
color: #444444;
|
1100
1125
|
-webkit-transition: all linear 0.2s;
|
1101
1126
|
transition: all linear 0.2s;
|
1102
|
-
|
1103
|
-
|
1104
|
-
|
1105
|
-
|
1106
|
-
/*
|
1107
|
-
* Needed to reset iOS `input[type="search"]` appearance
|
1108
|
-
* Higher specificity to override appearance set by normalize.less
|
1109
|
-
*/
|
1110
|
-
|
1111
|
-
input.uk-search-field {
|
1112
|
-
-webkit-appearance: none;
|
1113
|
-
}
|
1114
|
-
|
1115
|
-
/* Placeholder */
|
1116
|
-
|
1117
|
-
.uk-search-field {
|
1118
|
-
&:-ms-input-placeholder, &::-moz-placeholder, &::-webkit-input-placeholder {
|
1119
|
-
color: #999999;
|
1127
|
+
vertical-align: middle;
|
1128
|
+
&:-ms-input-placeholder {
|
1129
|
+
color: #999999 !important;
|
1120
1130
|
}
|
1121
|
-
&::-
|
1122
|
-
|
1131
|
+
&::-moz-placeholder, &::-webkit-input-placeholder {
|
1132
|
+
color: #999999;
|
1123
1133
|
}
|
1124
1134
|
&:focus {
|
1125
1135
|
outline: 0;
|
@@ -1127,11 +1137,32 @@ input.uk-search-field {
|
|
1127
1137
|
}
|
1128
1138
|
}
|
1129
1139
|
|
1130
|
-
/*
|
1140
|
+
/*
|
1141
|
+
* Remove inner padding and search cancel button in Chrome, Safari and Opera on OS X.
|
1142
|
+
*/
|
1143
|
+
|
1144
|
+
/*
|
1145
|
+
* Removes cancel button in IE10
|
1146
|
+
*/
|
1147
|
+
|
1148
|
+
/*
|
1149
|
+
* Removes placeholder transparency in Firefox.
|
1150
|
+
*/
|
1151
|
+
|
1152
|
+
/*
|
1153
|
+
* 1. Define consistent box sizing.
|
1154
|
+
* 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
|
1155
|
+
* 3. Remove `border-radius` in iOS.
|
1156
|
+
* 4. Correct `font` properties and `color` not being inherited.
|
1157
|
+
* 5. Remove default style in iOS.
|
1158
|
+
* 6. Style
|
1159
|
+
*/
|
1160
|
+
|
1161
|
+
/* Placeholder */
|
1131
1162
|
|
1132
1163
|
/* Focus */
|
1133
1164
|
|
1134
|
-
/* Focus +
|
1165
|
+
/* Focus + Active */
|
1135
1166
|
|
1136
1167
|
.uk-search.uk-active .uk-search-field {
|
1137
1168
|
width: 180px;
|
@@ -1226,7 +1257,10 @@ input.uk-search-field {
|
|
1226
1257
|
border-color: rgba(0, 0, 0, 0);
|
1227
1258
|
background: #1a1a1a;
|
1228
1259
|
color: #cccccc;
|
1229
|
-
&:-ms-input-placeholder
|
1260
|
+
&:-ms-input-placeholder {
|
1261
|
+
color: #777777 !important;
|
1262
|
+
}
|
1263
|
+
&::-moz-placeholder, &::-webkit-input-placeholder {
|
1230
1264
|
color: #777777;
|
1231
1265
|
}
|
1232
1266
|
}
|
@@ -1436,4 +1470,4 @@ input.uk-search-field {
|
|
1436
1470
|
top: 50%;
|
1437
1471
|
-webkit-transform: translate(-50%, -50%);
|
1438
1472
|
transform: translate(-50%, -50%);
|
1439
|
-
}
|
1473
|
+
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
/*! UIkit 2.
|
1
|
+
/*! UIkit 2.10.0 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
|
2
2
|
|
3
3
|
/* ========================================================================
|
4
4
|
Component: Dotnav
|
@@ -1182,39 +1182,49 @@ a.uk-datepicker-table-muted {
|
|
1182
1182
|
/* Sub-object `uk-search-field`
|
1183
1183
|
========================================================================== */
|
1184
1184
|
/*
|
1185
|
-
*
|
1185
|
+
* Removes inner padding and border in Firefox 4+.
|
1186
1186
|
*/
|
1187
1187
|
|
1188
1188
|
.uk-search-field {
|
1189
|
+
&::-moz-focus-inner {
|
1190
|
+
border: 0;
|
1191
|
+
padding: 0;
|
1192
|
+
}
|
1193
|
+
&::-webkit-search-cancel-button, &::-webkit-search-decoration {
|
1194
|
+
-webkit-appearance: none;
|
1195
|
+
}
|
1196
|
+
&::-ms-clear {
|
1197
|
+
display: none;
|
1198
|
+
}
|
1199
|
+
&::-moz-placeholder {
|
1200
|
+
opacity: 1;
|
1201
|
+
}
|
1202
|
+
/* 1 */
|
1203
|
+
-moz-box-sizing: border-box;
|
1204
|
+
box-sizing: border-box;
|
1205
|
+
/* 2 */
|
1206
|
+
margin: 0;
|
1207
|
+
/* 3 */
|
1208
|
+
border-radius: 0;
|
1209
|
+
/* 4 */
|
1210
|
+
font: inherit;
|
1211
|
+
color: #444444;
|
1212
|
+
/* 5 */
|
1213
|
+
-webkit-appearance: none;
|
1214
|
+
/* 6 */
|
1189
1215
|
width: 120px;
|
1190
1216
|
height: 30px;
|
1191
1217
|
padding: 0 0 0 30px;
|
1192
1218
|
border: 1px solid rgba(0, 0, 0, 0);
|
1193
1219
|
background: rgba(0, 0, 0, 0);
|
1194
|
-
color: #444444;
|
1195
1220
|
-webkit-transition: all linear 0.2s;
|
1196
1221
|
transition: all linear 0.2s;
|
1197
|
-
|
1198
|
-
|
1199
|
-
|
1200
|
-
|
1201
|
-
/*
|
1202
|
-
* Needed to reset iOS `input[type="search"]` appearance
|
1203
|
-
* Higher specificity to override appearance set by normalize.less
|
1204
|
-
*/
|
1205
|
-
|
1206
|
-
input.uk-search-field {
|
1207
|
-
-webkit-appearance: none;
|
1208
|
-
}
|
1209
|
-
|
1210
|
-
/* Placeholder */
|
1211
|
-
|
1212
|
-
.uk-search-field {
|
1213
|
-
&:-ms-input-placeholder, &::-moz-placeholder, &::-webkit-input-placeholder {
|
1214
|
-
color: #999999;
|
1222
|
+
vertical-align: middle;
|
1223
|
+
&:-ms-input-placeholder {
|
1224
|
+
color: #999999 !important;
|
1215
1225
|
}
|
1216
|
-
&::-
|
1217
|
-
|
1226
|
+
&::-moz-placeholder, &::-webkit-input-placeholder {
|
1227
|
+
color: #999999;
|
1218
1228
|
}
|
1219
1229
|
&:focus {
|
1220
1230
|
outline: 0;
|
@@ -1222,11 +1232,32 @@ input.uk-search-field {
|
|
1222
1232
|
}
|
1223
1233
|
}
|
1224
1234
|
|
1225
|
-
/*
|
1235
|
+
/*
|
1236
|
+
* Remove inner padding and search cancel button in Chrome, Safari and Opera on OS X.
|
1237
|
+
*/
|
1238
|
+
|
1239
|
+
/*
|
1240
|
+
* Removes cancel button in IE10
|
1241
|
+
*/
|
1242
|
+
|
1243
|
+
/*
|
1244
|
+
* Removes placeholder transparency in Firefox.
|
1245
|
+
*/
|
1246
|
+
|
1247
|
+
/*
|
1248
|
+
* 1. Define consistent box sizing.
|
1249
|
+
* 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
|
1250
|
+
* 3. Remove `border-radius` in iOS.
|
1251
|
+
* 4. Correct `font` properties and `color` not being inherited.
|
1252
|
+
* 5. Remove default style in iOS.
|
1253
|
+
* 6. Style
|
1254
|
+
*/
|
1255
|
+
|
1256
|
+
/* Placeholder */
|
1226
1257
|
|
1227
1258
|
/* Focus */
|
1228
1259
|
|
1229
|
-
/* Focus +
|
1260
|
+
/* Focus + Active */
|
1230
1261
|
|
1231
1262
|
.uk-search.uk-active .uk-search-field {
|
1232
1263
|
width: 180px;
|
@@ -1323,7 +1354,10 @@ input.uk-search-field {
|
|
1323
1354
|
border-color: rgba(0, 0, 0, 0);
|
1324
1355
|
background: #1a1a1a;
|
1325
1356
|
color: #cccccc;
|
1326
|
-
&:-ms-input-placeholder
|
1357
|
+
&:-ms-input-placeholder {
|
1358
|
+
color: #777777 !important;
|
1359
|
+
}
|
1360
|
+
&::-moz-placeholder, &::-webkit-input-placeholder {
|
1327
1361
|
color: #777777;
|
1328
1362
|
}
|
1329
1363
|
}
|
@@ -1533,4 +1567,4 @@ input.uk-search-field {
|
|
1533
1567
|
top: 50%;
|
1534
1568
|
-webkit-transform: translate(-50%, -50%);
|
1535
1569
|
transform: translate(-50%, -50%);
|
1536
|
-
}
|
1570
|
+
}
|