Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Custom inputs #41

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
11 changes: 8 additions & 3 deletions assets/themes/restart/css/userstyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ a.detail-icon:visited{
color: #999999 !important;
}

@media only screen and (max-width: 480px) {
/* @media only screen and (max-width: 480px) {

#table {
margin-left: -20px !important;
Expand All @@ -86,7 +86,7 @@ a.detail-icon:visited{
padding-right: 0 !important;
}

}
} */

/* background on the home page */
@media screen and (min-width: 768px) {
Expand Down Expand Up @@ -194,7 +194,7 @@ input[type=radio]:checked+label:before {
box-shadow: 0 0 0 6px #428bca inset,0 0 0 11px #fff inset;
}
input[type=checkbox]:focus:checked+label:before {
box-shadow: 0 0 0 1px #428bca, 0 0 0 11px #428bca inset;
box-shadow: 0 0 0 1px #428bca, 0 0 0 12px #428bca inset;
}
input[type=checkbox]:focus+label:before,
input[type=radio]:focus+label:before {
Expand Down Expand Up @@ -248,3 +248,8 @@ Create custom navbar-like custom styles */
.btn-div.open .dropdown-toggle {
box-shadow: none;
}

/* Make table fit its parent container */
#table {
word-break: break-all;
}