custom checkbox in options

This commit is contained in:
2015-04-26 18:08:30 +02:00
parent 60dfaae271
commit 4f8956f09b
9 changed files with 73 additions and 22 deletions

View File

@@ -310,4 +310,11 @@ vertical-align 0% -5% -10% -15% -20% -25% -30%
.fa-c-image:before {
content: "\f03e";
}
.fa-c-on:before {
content: "\f205";
}
.fa-c-off:before {
content: "\f204";
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1077,16 +1077,19 @@
}
#options .options_box .option_line {
margin:10px 0;
margin:5px 0;
float:left;
width:100%;
}
#options .options_box input[type=text], #options .options_box input[type=password], #options .options_box select {
font-size:$size_big;
#options .options_box input[type=text],
#options .options_box input[type=password],
#options .options_box select,
#options .options_box .checkbox {
background:$col_none;
border-width:1px;
font-size:$size_vbig;
font-size:14px;
padding:5px;
margin-top:6px;
float:right;
}
@@ -1099,11 +1102,21 @@
color:$col_main_1;
}
#options .options_box .checkbox {
padding:0;
background:none;
font-size:1.7em;
}
#options .options_box .option_line p {
float:left;
width:250px;
padding:5px 0;
margin:5px 0;
font-size:14px;
}
#options .options_box .button {
margin-top:5px;
}
/* Procedure */

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long