Skip to content

Commit

Permalink
dist
Browse files Browse the repository at this point in the history
  • Loading branch information
ahua52 committed Dec 19, 2016
1 parent 9830827 commit 83b5f74
Show file tree
Hide file tree
Showing 2 changed files with 135 additions and 1 deletion.
1 change: 0 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,4 @@ _site
sea-modules
spm_modules
.cache
dist
coverage
135 changes: 135 additions & 0 deletions build/Checkbox.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
@charset "UTF-8";
/* IMAGES */
/* 默认颜色 */
/* 客户化 */
/* 波纹效果 */
/*贝塞尔曲线动画 */
/* 阴影 */
/* ========== 文本字体 ========== */
/* 控件 */
/* 不同背景下对应的文字颜色 */
/* UButton */
/* UText */
/* Navlayout */
/* gridlayout */
/* menu */
/* Alert */
/* Checkbox */
/* Radio */
/* Switch */
/* loading */
/* datetimepicker */
/* message */
/* DATA TABLE */
/* tooltip*/
/* 进度条 */
/* ========== Content Tabs ========== */
/* CARD */
/* Card dimensions */
/* Cover image */
/* ========== Card ========== */
/* ============ Forms ============*/
/* BADGE */
/* Typography */
/* Shadows */
/* Animations */
.u-checkbox {
width: 18px;
display: inline-block; }
.u-checkbox.disabled .u-checkbox-label {
cursor: not-allowed;
opacity: 0.5; }
.u-checkbox input[type='checkbox'] {
display: none;
cursor: pointer; }
.u-checkbox.is-checked .u-checkbox-label:before {
-moz-box-shadow: inset 0 0 0 10px rgb(63,81,181);
-webkit-box-shadow: inset 0 0 0 10px rgb(63,81,181);
box-shadow: inset 0 0 0 10px rgb(63,81,181);
border-color: rgb(63,81,181); }
.u-checkbox.is-checked .u-checkbox-label:after {
color: #fff;
content: "\e658";
line-height: 18px;
font-size: 14px; }
.u-checkbox .u-checkbox-label {
cursor: pointer;
display: inline-block;
position: relative;
padding-left: 25px;
margin-right: 10px;
color: rgb(63,81,181); }
.u-checkbox .u-checkbox-label:before {
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
border: 1px solid;
background-color: #fafafa;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
content: '';
font-family: 'uf';
display: inline-block;
width: 18px;
height: 18px;
left: 0;
bottom: 0;
text-align: center;
position: absolute; }
.u-checkbox .u-checkbox-label:after {
content: '';
font-family: 'uf';
display: inline-block;
width: 18px;
height: 18px;
left: 0;
bottom: 0;
text-align: center;
position: absolute; }

.u-checkbox.u-checkbox-success.is-checked .u-checkbox-label:before {
-moz-box-shadow: inset 0 0 0 10px rgb(76,175,80);
-webkit-box-shadow: inset 0 0 0 10px rgb(76,175,80);
box-shadow: inset 0 0 0 10px rgb(76,175,80);
border-color: rgb(76,175,80); }

.u-checkbox.u-checkbox-success .u-checkbox-label {
color: rgb(76,175,80); }

.u-checkbox.u-checkbox-warning.is-checked .u-checkbox-label:before {
-moz-box-shadow: inset 0 0 0 10px rgb(255,152,0);
-webkit-box-shadow: inset 0 0 0 10px rgb(255,152,0);
box-shadow: inset 0 0 0 10px rgb(255,152,0);
border-color: rgb(255,152,0); }

.u-checkbox.u-checkbox-warning .u-checkbox-label {
color: rgb(255,152,0); }

.u-checkbox.u-checkbox-danger.is-checked .u-checkbox-label:before {
-moz-box-shadow: inset 0 0 0 10px rgb(244,67,54);
-webkit-box-shadow: inset 0 0 0 10px rgb(244,67,54);
box-shadow: inset 0 0 0 10px rgb(244,67,54);
border-color: rgb(244,67,54); }

.u-checkbox.u-checkbox-danger .u-checkbox-label {
color: rgb(244,67,54); }

.u-checkbox.u-checkbox-dark.is-checked .u-checkbox-label:before {
-moz-box-shadow: inset 0 0 0 10px rgb(97,97,97);
-webkit-box-shadow: inset 0 0 0 10px rgb(97,97,97);
box-shadow: inset 0 0 0 10px rgb(97,97,97);
border-color: rgb(97,97,97); }

.u-checkbox.u-checkbox-dark .u-checkbox-label {
color: rgb(97,97,97); }

.u-checkbox.u-checkbox-info.is-checked .u-checkbox-label:before {
-moz-box-shadow: inset 0 0 0 10px rgb(0,188,212);
-webkit-box-shadow: inset 0 0 0 10px rgb(0,188,212);
box-shadow: inset 0 0 0 10px rgb(0,188,212);
border-color: rgb(0,188,212); }

.u-checkbox.u-checkbox-info .u-checkbox-label {
color: rgb(0,188,212); }

0 comments on commit 83b5f74

Please sign in to comment.