mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-25 03:44:29 +03:00
Kill iCheck cause Hannah says it has genital warts.
This commit is contained in:
parent
ab639f7026
commit
bbc1d0207e
@ -379,8 +379,6 @@ var path = require('path'),
|
|||||||
'core/shared/vendor/handlebars/handlebars-runtime.js',
|
'core/shared/vendor/handlebars/handlebars-runtime.js',
|
||||||
'core/shared/vendor/moment.js',
|
'core/shared/vendor/moment.js',
|
||||||
|
|
||||||
'core/client/assets/vendor/icheck/jquery.icheck.min.js',
|
|
||||||
|
|
||||||
'core/shared/vendor/jquery/jquery.ui.widget.js',
|
'core/shared/vendor/jquery/jquery.ui.widget.js',
|
||||||
'core/shared/vendor/jquery/jquery.iframe-transport.js',
|
'core/shared/vendor/jquery/jquery.iframe-transport.js',
|
||||||
'core/shared/vendor/jquery/jquery.fileupload.js',
|
'core/shared/vendor/jquery/jquery.fileupload.js',
|
||||||
@ -436,8 +434,6 @@ var path = require('path'),
|
|||||||
'core/shared/vendor/handlebars/handlebars-runtime.js',
|
'core/shared/vendor/handlebars/handlebars-runtime.js',
|
||||||
'core/shared/vendor/moment.js',
|
'core/shared/vendor/moment.js',
|
||||||
|
|
||||||
'core/client/assets/vendor/icheck/jquery.icheck.min.js',
|
|
||||||
|
|
||||||
'core/shared/vendor/jquery/jquery.ui.widget.js',
|
'core/shared/vendor/jquery/jquery.ui.widget.js',
|
||||||
'core/shared/vendor/jquery/jquery.iframe-transport.js',
|
'core/shared/vendor/jquery/jquery.iframe-transport.js',
|
||||||
'core/shared/vendor/jquery/jquery.fileupload.js',
|
'core/shared/vendor/jquery/jquery.fileupload.js',
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
* General
|
* General
|
||||||
* Buttons
|
* Buttons
|
||||||
* Split Buttons
|
* Split Buttons
|
||||||
* iCheck jQuery Plugin Styles
|
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -443,70 +442,3 @@ input[type="reset"] {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* =============================================================================
|
|
||||||
iCheck jQuery Plugin Styles
|
|
||||||
============================================================================= */
|
|
||||||
.icheckbox_ghost,
|
|
||||||
.iradio_ghost {
|
|
||||||
@include box-sizing(border-box);
|
|
||||||
display: block;
|
|
||||||
width: 16px;
|
|
||||||
height: 16px;
|
|
||||||
float: left;
|
|
||||||
margin: 2px 0 0 0;
|
|
||||||
padding: 0;
|
|
||||||
margin-right: 6px;
|
|
||||||
background: none;
|
|
||||||
border: none;
|
|
||||||
box-shadow: none;
|
|
||||||
border-radius: 2px;
|
|
||||||
@include transition(
|
|
||||||
border ease 0.25s,
|
|
||||||
background ease 0.2s
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
.icheckbox_ghost {
|
|
||||||
border: 1px solid darken($lightbrown, 5%);
|
|
||||||
}
|
|
||||||
.icheckbox_ghost.hover {
|
|
||||||
border: $brown 1px solid;
|
|
||||||
}
|
|
||||||
.icheckbox_ghost.checked {
|
|
||||||
background: $blue;
|
|
||||||
border: $blue 1px solid;
|
|
||||||
padding:0;
|
|
||||||
@include icon($i-check, 12px, #fff) {
|
|
||||||
position: relative;
|
|
||||||
top: -4px;
|
|
||||||
left: -1px
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.icheckbox_ghost.disabled {
|
|
||||||
border: 1px solid $lightbrown;
|
|
||||||
}
|
|
||||||
.icheckbox_ghost.checked.disabled {
|
|
||||||
background: $lightbrown;
|
|
||||||
}
|
|
||||||
|
|
||||||
.iradio_ghost {
|
|
||||||
border-radius: 11px;
|
|
||||||
border: 1px solid darken($lightbrown, 5%);
|
|
||||||
}
|
|
||||||
.iradio_ghost.hover {
|
|
||||||
border: $blue 2px solid;
|
|
||||||
}
|
|
||||||
.iradio_ghost.checked {
|
|
||||||
background: $blue;
|
|
||||||
border: none;
|
|
||||||
@include icon($i-check, 1em, #fff);
|
|
||||||
}
|
|
||||||
.iradio_ghost.disabled {
|
|
||||||
border: 1px solid $lightbrown;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.iradio_ghost.checked.disabled {
|
|
||||||
background: $lightbrown;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
@ -110,10 +110,6 @@
|
|||||||
afterRender: function () {
|
afterRender: function () {
|
||||||
this.$el.attr('id', this.id);
|
this.$el.attr('id', this.id);
|
||||||
this.$el.addClass('active');
|
this.$el.addClass('active');
|
||||||
|
|
||||||
this.$('input').iCheck({
|
|
||||||
checkboxClass: 'icheckbox_ghost'
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
saveSuccess: function (model, response, options) {
|
saveSuccess: function (model, response, options) {
|
||||||
/*jslint unparam:true*/
|
/*jslint unparam:true*/
|
||||||
|
Loading…
Reference in New Issue
Block a user