Skip to content
This repository was archived by the owner on Dec 27, 2021. It is now read-only.

Commit bfb8f6d

Browse files
committed
2.0.2
1 parent c0d8400 commit bfb8f6d

File tree

8 files changed

+14
-11
lines changed

8 files changed

+14
-11
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# История изменений
22

3+
## 2.0.2 <sup>22.10.2017</sup>
4+
- Исправлено: нативный селект выходил вправо за область псевдоселекта, из-за чего пространство справа от псевдоселекта становилось кликабельным.
5+
36
## 2.0.1 <sup>29.08.2017</sup>
47
- Изменено: в отмеченном чекбоксе теперь галочка вместо квадрата.
58
- Исправлено: неверный путь в параметре `main` файла _package.json_.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# jQuery Form Styler <sup>[2.0.1](https://github.com/Dimox/jQueryFormStyler/blob/master/CHANGELOG.md)</sup>
1+
# jQuery Form Styler <sup>[2.0.2](https://github.com/Dimox/jQueryFormStyler/blob/master/CHANGELOG.md)</sup>
22

33
jQuery-плагин для стилизации элементов HTML-форм:
44

@@ -12,7 +12,7 @@ jQuery-плагин для стилизации элементов HTML-форм
1212

1313
- [Страница с примерами](https://dimox.github.io/jQueryFormStyler/demo/)
1414
- [Домашняя страница плагина](http://dimox.name/jquery-form-styler/)
15-
- [Плагин в CDN jsDelivr](http://www.jsdelivr.com/#!jquery.formstyler)
15+
- [Плагин в CDN jsDelivr](https://www.jsdelivr.com/package/npm/jquery-form-styler) [![](https://data.jsdelivr.com/v1/package/npm/jquery-form-styler/badge)](https://www.jsdelivr.com/package/npm/jquery-form-styler)
1616

1717
## Лицензия
1818

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery.form-styler",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"main": [
55
"dist/jquery.formstyler.js",
66
"dist/jquery.formstyler.css"

dist/jquery.formstyler.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@
4646
.jq-select-multiple select {
4747
position: absolute;
4848
top: 0;
49-
right: 0;
50-
bottom: 0;
5149
left: 0;
50+
width: 100%;
51+
height: 100%;
5252
margin: 0;
5353
padding: 0;
5454
opacity: 0;

dist/jquery.formstyler.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*
2-
* jQuery Form Styler v2.0.1
2+
* jQuery Form Styler v2.0.2
33
* https://github.com/Dimox/jQueryFormStyler
44
*
55
* Copyright 2012-2017 Dimox (http://dimox.name/)
66
* Released under the MIT license.
77
*
8-
* Date: 2017.08.29
8+
* Date: 2017.10.22
99
*
1010
*/
1111

dist/jquery.formstyler.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-form-styler",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "jQuery-плагин для стилизации элементов HTML-форм",
55
"main": "dist/jquery.formstyler.min.js",
66
"author": "Dimox (http://dimox.name/)",

src/jquery.formstyler.styl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838
position absolute
3939
top 0
4040
left 0
41-
right 0
42-
bottom 0
41+
width 100%
42+
height 100%
4343
margin 0
4444
padding 0
4545
opacity 0

0 commit comments

Comments
 (0)