Commit 2372a8ee authored by David Stutz's avatar David Stutz

Merge pull request #117 from ZuBB/patch-4

Move style that makes 'select all' item bold into common CSS (v2)
parents 52b974a3 ac3a321c
...@@ -14,11 +14,6 @@ ...@@ -14,11 +14,6 @@
<script type="text/javascript" src="js/bootstrap-2.3.2.min.js"></script> <script type="text/javascript" src="js/bootstrap-2.3.2.min.js"></script>
<script type="text/javascript" src="js/bootstrap-multiselect.js"></script> <script type="text/javascript" src="js/bootstrap-multiselect.js"></script>
<script type="text/javascript" src="js/prettify.js"></script> <script type="text/javascript" src="js/prettify.js"></script>
<style>
.multiselect-all label {
font-weight: bold;
}
</style>
</head> </head>
<body> <body>
<a href="https://github.com/davidstutz/bootstrap-multiselect"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub"></a> <a href="https://github.com/davidstutz/bootstrap-multiselect"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub"></a>
......
...@@ -3,30 +3,34 @@ ...@@ -3,30 +3,34 @@
list-style-type: none; list-style-type: none;
margin: 0; margin: 0;
padding: 0; padding: 0;
input[type="text"] { input[type="text"] {
width: 70%; width: 70%;
} }
.input-prepend { .input-prepend {
padding: 3px; padding: 3px;
} }
> li { > li {
padding: 0; padding: 0;
> a.multiselect-all label {
font-weight: bold;
}
> label { > label {
margin: 0; margin: 0;
padding: 3px 20px 3px 20px; padding: 3px 20px 3px 20px;
height: 100%; height: 100%;
cursor: pointer; cursor: pointer;
&.multiselect-header { &.multiselect-header {
margin: 0; margin: 0;
padding: 3px 20px 3px 20px; padding: 3px 20px 3px 20px;
height: 100%; height: 100%;
} }
> input[type="checkbox"] { > input[type="checkbox"] {
margin-bottom:5px; margin-bottom:5px;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment