-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Display Alignak parameters - schedulers configuration
- Loading branch information
Showing
11 changed files
with
2,057 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
th.vertical { | ||
height: 120px; | ||
width: 15px; | ||
vertical-align: bottom; | ||
text-align: center; | ||
overflow: visible!important; | ||
white-space: nowrap; | ||
border-top: 0; | ||
padding-left: 2px; | ||
padding-right: 2px; | ||
} | ||
|
||
/** | ||
* Works everywere ( IE7+, FF, Chrome, Safari, Opera ) | ||
* Example: http://jsbin.com/afAQAWA/2/ | ||
*/ | ||
.rotated-text { | ||
display: inline-block; | ||
overflow: hidden; | ||
font-weight: normal; | ||
padding-left: 2px; | ||
padding-right: 2px; | ||
width: 18px; | ||
margin: 0; | ||
margin-bottom: 4px; | ||
} | ||
.rotated-text__inner { | ||
display: inline-block; | ||
white-space: nowrap; | ||
/* this is for shity "non IE" browsers | ||
that doesn't support writing-mode */ | ||
-webkit-transform: translate(1.1em,0) rotate(90deg); | ||
-moz-transform: translate(1.1em,0) rotate(90deg); | ||
-o-transform: translate(1.1em,0) rotate(90deg); | ||
transform: translate(1.1em,0) rotate(90deg); | ||
-webkit-transform-origin: 0 0; | ||
-moz-transform-origin: 0 0; | ||
-o-transform-origin: 0 0; | ||
transform-origin: 0 0; | ||
/* IE9+ */ | ||
-ms-transform: none; | ||
-ms-transform-origin: none; | ||
/* IE8+ */ | ||
-ms-writing-mode: tb-rl; | ||
/* IE7 and below */ | ||
*writing-mode: tb-rl; | ||
} | ||
.rotated-text__inner:before { | ||
content: ""; | ||
float: left; | ||
margin-top: 100%; | ||
} | ||
|
||
|
||
/* | ||
Fixed table header jQuery plugin when used with bootstrap requires this declaration ... | ||
*/ | ||
table.floatThead-table { | ||
border-top: none; | ||
border-bottom: none; | ||
background-color: #FFF; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
span.multiselect-native-select { | ||
position: relative | ||
} | ||
span.multiselect-native-select select { | ||
border: 0!important; | ||
clip: rect(0 0 0 0)!important; | ||
height: 1px!important; | ||
margin: -1px -1px -1px -3px!important; | ||
overflow: hidden!important; | ||
padding: 0!important; | ||
position: absolute!important; | ||
width: 1px!important; | ||
left: 50%; | ||
top: 30px | ||
} | ||
.multiselect-container { | ||
position: absolute; | ||
list-style-type: none; | ||
margin: 0; | ||
padding: 0 | ||
} | ||
.multiselect-container .input-group { | ||
margin: 5px | ||
} | ||
.multiselect-container>li { | ||
padding: 0 | ||
} | ||
.multiselect-container>li>a.multiselect-all label { | ||
font-weight: 700 | ||
} | ||
.multiselect-container>li.multiselect-group label { | ||
margin: 0; | ||
padding: 3px 20px 3px 20px; | ||
height: 100%; | ||
font-weight: 700 | ||
} | ||
.multiselect-container>li.multiselect-group-clickable label { | ||
cursor: pointer | ||
} | ||
.multiselect-container>li>a { | ||
padding: 0 | ||
} | ||
.multiselect-container>li>a>label { | ||
margin: 0; | ||
height: 100%; | ||
cursor: pointer; | ||
font-weight: 400; | ||
padding: 3px 0 3px 30px | ||
} | ||
.multiselect-container>li>a>label.radio, .multiselect-container>li>a>label.checkbox { | ||
margin: 0 | ||
} | ||
.multiselect-container>li>a>label>input[type=checkbox] { | ||
margin-bottom: 5px | ||
} | ||
.btn-group>.btn-group:nth-child(2)>.multiselect.btn { | ||
border-top-left-radius: 4px; | ||
border-bottom-left-radius: 4px | ||
} | ||
.form-inline .multiselect-container label.checkbox, .form-inline .multiselect-container label.radio { | ||
padding: 3px 20px 3px 40px | ||
} | ||
.form-inline .multiselect-container li a label.checkbox input[type=checkbox], .form-inline .multiselect-container li a label.radio input[type=radio] { | ||
margin-left: -20px; | ||
margin-right: 0 | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.