| /* |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| */ |
| |
| /* PatternFly notification drawer styles */ |
| /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ |
| .hidden { |
| display: none !important; |
| } |
| .btn { |
| display: inline-block; |
| margin-bottom: 0; |
| font-weight: 600; |
| text-align: center; |
| white-space: nowrap; |
| vertical-align: middle; |
| -ms-touch-action: manipulation; |
| touch-action: manipulation; |
| cursor: pointer; |
| background-image: none; |
| border: 1px solid transparent; |
| padding: 2px 6px; |
| font-size: 12px; |
| line-height: 1.66666667; |
| border-radius: 1px; |
| -webkit-user-select: none; |
| -moz-user-select: none; |
| -ms-user-select: none; |
| user-select: none; |
| } |
| .btn:focus, |
| .btn:active:focus, |
| .btn.active:focus, |
| .btn.focus, |
| .btn:active.focus, |
| .btn.active.focus { |
| outline: 5px auto -webkit-focus-ring-color; |
| outline-offset: -2px; |
| } |
| .btn:hover, |
| .btn:focus, |
| .btn.focus { |
| color: #4d5258; |
| text-decoration: none; |
| } |
| .btn:active, |
| .btn.active { |
| background-image: none; |
| outline: 0; |
| box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); |
| } |
| .btn.disabled, |
| .btn[disabled], |
| fieldset[disabled] .btn { |
| cursor: not-allowed; |
| filter: alpha(opacity=65); |
| opacity: 0.65; |
| box-shadow: none; |
| } |
| a.btn.disabled, |
| fieldset[disabled] a.btn { |
| pointer-events: none; |
| } |
| .btn-default { |
| color: #4d5258; |
| background-color: #f1f1f1; |
| border-color: #bbb; |
| } |
| .btn-default:focus, |
| .btn-default.focus { |
| color: #4d5258; |
| background-color: #d8d8d8; |
| border-color: #7b7b7b; |
| } |
| .btn-default:hover { |
| color: #4d5258; |
| background-color: #d8d8d8; |
| border-color: #9c9c9c; |
| } |
| .btn-default:active, |
| .btn-default.active, |
| .open > .dropdown-toggle.btn-default { |
| color: #4d5258; |
| background-color: #d8d8d8; |
| background-image: none; |
| border-color: #9c9c9c; |
| } |
| .btn-default:active:hover, |
| .btn-default.active:hover, |
| .open > .dropdown-toggle.btn-default:hover, |
| .btn-default:active:focus, |
| .btn-default.active:focus, |
| .open > .dropdown-toggle.btn-default:focus, |
| .btn-default:active.focus, |
| .btn-default.active.focus, |
| .open > .dropdown-toggle.btn-default.focus { |
| color: #4d5258; |
| background-color: #c6c6c6; |
| border-color: #7b7b7b; |
| } |
| .btn-default.disabled:hover, |
| .btn-default[disabled]:hover, |
| fieldset[disabled] .btn-default:hover, |
| .btn-default.disabled:focus, |
| .btn-default[disabled]:focus, |
| fieldset[disabled] .btn-default:focus, |
| .btn-default.disabled.focus, |
| .btn-default[disabled].focus, |
| fieldset[disabled] .btn-default.focus { |
| background-color: #f1f1f1; |
| border-color: #bbb; |
| } |
| .btn-default .badge { |
| color: #f1f1f1; |
| background-color: #4d5258; |
| } |
| .btn-primary { |
| color: #fff; |
| background-color: #0088ce; |
| border-color: #00659c; |
| } |
| .btn-primary:focus, |
| .btn-primary.focus { |
| color: #fff; |
| background-color: #00669b; |
| border-color: #00121d; |
| } |
| .btn-primary:hover { |
| color: #fff; |
| background-color: #00669b; |
| border-color: #003d5f; |
| } |
| .btn-primary:active, |
| .btn-primary.active, |
| .open > .dropdown-toggle.btn-primary { |
| color: #fff; |
| background-color: #00669b; |
| background-image: none; |
| border-color: #003d5f; |
| } |
| .btn-primary:active:hover, |
| .btn-primary.active:hover, |
| .open > .dropdown-toggle.btn-primary:hover, |
| .btn-primary:active:focus, |
| .btn-primary.active:focus, |
| .open > .dropdown-toggle.btn-primary:focus, |
| .btn-primary:active.focus, |
| .btn-primary.active.focus, |
| .open > .dropdown-toggle.btn-primary.focus { |
| color: #fff; |
| background-color: #004f77; |
| border-color: #00121d; |
| } |
| .btn-primary.disabled:hover, |
| .btn-primary[disabled]:hover, |
| fieldset[disabled] .btn-primary:hover, |
| .btn-primary.disabled:focus, |
| .btn-primary[disabled]:focus, |
| fieldset[disabled] .btn-primary:focus, |
| .btn-primary.disabled.focus, |
| .btn-primary[disabled].focus, |
| fieldset[disabled] .btn-primary.focus { |
| background-color: #0088ce; |
| border-color: #00659c; |
| } |
| .btn-primary .badge { |
| color: #0088ce; |
| background-color: #fff; |
| } |
| .btn-success { |
| color: #fff; |
| background-color: #3f9c35; |
| border-color: #37892f; |
| } |
| .btn-success:focus, |
| .btn-success.focus { |
| color: #fff; |
| background-color: #307628; |
| border-color: #112a0e; |
| } |
| .btn-success:hover { |
| color: #fff; |
| background-color: #307628; |
| border-color: #255b1f; |
| } |
| .btn-success:active, |
| .btn-success.active, |
| .open > .dropdown-toggle.btn-success { |
| color: #fff; |
| background-color: #307628; |
| background-image: none; |
| border-color: #255b1f; |
| } |
| .btn-success:active:hover, |
| .btn-success.active:hover, |
| .open > .dropdown-toggle.btn-success:hover, |
| .btn-success:active:focus, |
| .btn-success.active:focus, |
| .open > .dropdown-toggle.btn-success:focus, |
| .btn-success:active.focus, |
| .btn-success.active.focus, |
| .open > .dropdown-toggle.btn-success.focus { |
| color: #fff; |
| background-color: #255b1f; |
| border-color: #112a0e; |
| } |
| .btn-success.disabled:hover, |
| .btn-success[disabled]:hover, |
| fieldset[disabled] .btn-success:hover, |
| .btn-success.disabled:focus, |
| .btn-success[disabled]:focus, |
| fieldset[disabled] .btn-success:focus, |
| .btn-success.disabled.focus, |
| .btn-success[disabled].focus, |
| fieldset[disabled] .btn-success.focus { |
| background-color: #3f9c35; |
| border-color: #37892f; |
| } |
| .btn-success .badge { |
| color: #3f9c35; |
| background-color: #fff; |
| } |
| .btn-info { |
| color: #fff; |
| background-color: #00659c; |
| border-color: #005483; |
| } |
| .btn-info:focus, |
| .btn-info.focus { |
| color: #fff; |
| background-color: #004469; |
| border-color: #000203; |
| } |
| .btn-info:hover { |
| color: #fff; |
| background-color: #004469; |
| border-color: #002d45; |
| } |
| .btn-info:active, |
| .btn-info.active, |
| .open > .dropdown-toggle.btn-info { |
| color: #fff; |
| background-color: #004469; |
| background-image: none; |
| border-color: #002d45; |
| } |
| .btn-info:active:hover, |
| .btn-info.active:hover, |
| .open > .dropdown-toggle.btn-info:hover, |
| .btn-info:active:focus, |
| .btn-info.active:focus, |
| .open > .dropdown-toggle.btn-info:focus, |
| .btn-info:active.focus, |
| .btn-info.active.focus, |
| .open > .dropdown-toggle.btn-info.focus { |
| color: #fff; |
| background-color: #002d45; |
| border-color: #000203; |
| } |
| .btn-info.disabled:hover, |
| .btn-info[disabled]:hover, |
| fieldset[disabled] .btn-info:hover, |
| .btn-info.disabled:focus, |
| .btn-info[disabled]:focus, |
| fieldset[disabled] .btn-info:focus, |
| .btn-info.disabled.focus, |
| .btn-info[disabled].focus, |
| fieldset[disabled] .btn-info.focus { |
| background-color: #00659c; |
| border-color: #005483; |
| } |
| .btn-info .badge { |
| color: #00659c; |
| background-color: #fff; |
| } |
| .btn-warning { |
| color: #fff; |
| background-color: #ec7a08; |
| border-color: #d36d07; |
| } |
| .btn-warning:focus, |
| .btn-warning.focus { |
| color: #fff; |
| background-color: #bb6106; |
| border-color: #582e03; |
| } |
| .btn-warning:hover { |
| color: #fff; |
| background-color: #bb6106; |
| border-color: #984f05; |
| } |
| .btn-warning:active, |
| .btn-warning.active, |
| .open > .dropdown-toggle.btn-warning { |
| color: #fff; |
| background-color: #bb6106; |
| background-image: none; |
| border-color: #984f05; |
| } |
| .btn-warning:active:hover, |
| .btn-warning.active:hover, |
| .open > .dropdown-toggle.btn-warning:hover, |
| .btn-warning:active:focus, |
| .btn-warning.active:focus, |
| .open > .dropdown-toggle.btn-warning:focus, |
| .btn-warning:active.focus, |
| .btn-warning.active.focus, |
| .open > .dropdown-toggle.btn-warning.focus { |
| color: #fff; |
| background-color: #984f05; |
| border-color: #582e03; |
| } |
| .btn-warning.disabled:hover, |
| .btn-warning[disabled]:hover, |
| fieldset[disabled] .btn-warning:hover, |
| .btn-warning.disabled:focus, |
| .btn-warning[disabled]:focus, |
| fieldset[disabled] .btn-warning:focus, |
| .btn-warning.disabled.focus, |
| .btn-warning[disabled].focus, |
| fieldset[disabled] .btn-warning.focus { |
| background-color: #ec7a08; |
| border-color: #d36d07; |
| } |
| .btn-warning .badge { |
| color: #ec7a08; |
| background-color: #fff; |
| } |
| .btn-danger { |
| color: #fff; |
| background-color: #a30000; |
| border-color: #8b0000; |
| } |
| .btn-danger:focus, |
| .btn-danger.focus { |
| color: #fff; |
| background-color: #700000; |
| border-color: #0b0000; |
| } |
| .btn-danger:hover { |
| color: #fff; |
| background-color: #700000; |
| border-color: #4e0000; |
| } |
| .btn-danger:active, |
| .btn-danger.active, |
| .open > .dropdown-toggle.btn-danger { |
| color: #fff; |
| background-color: #700000; |
| background-image: none; |
| border-color: #4e0000; |
| } |
| .btn-danger:active:hover, |
| .btn-danger.active:hover, |
| .open > .dropdown-toggle.btn-danger:hover, |
| .btn-danger:active:focus, |
| .btn-danger.active:focus, |
| .open > .dropdown-toggle.btn-danger:focus, |
| .btn-danger:active.focus, |
| .btn-danger.active.focus, |
| .open > .dropdown-toggle.btn-danger.focus { |
| color: #fff; |
| background-color: #4c0000; |
| border-color: #0b0000; |
| } |
| .btn-danger.disabled:hover, |
| .btn-danger[disabled]:hover, |
| fieldset[disabled] .btn-danger:hover, |
| .btn-danger.disabled:focus, |
| .btn-danger[disabled]:focus, |
| fieldset[disabled] .btn-danger:focus, |
| .btn-danger.disabled.focus, |
| .btn-danger[disabled].focus, |
| fieldset[disabled] .btn-danger.focus { |
| background-color: #a30000; |
| border-color: #8b0000; |
| } |
| .btn-danger .badge { |
| color: #a30000; |
| background-color: #fff; |
| } |
| .btn-link { |
| font-weight: 400; |
| color: #0088ce; |
| border-radius: 0; |
| } |
| .btn-link, |
| .btn-link:active, |
| .btn-link.active, |
| .btn-link[disabled], |
| fieldset[disabled] .btn-link { |
| background-color: transparent; |
| box-shadow: none; |
| } |
| .btn-link, |
| .btn-link:hover, |
| .btn-link:focus, |
| .btn-link:active { |
| border-color: transparent; |
| } |
| .btn-link:hover, |
| .btn-link:focus { |
| color: #00659c; |
| text-decoration: underline; |
| background-color: transparent; |
| } |
| .btn-link[disabled]:hover, |
| fieldset[disabled] .btn-link:hover, |
| .btn-link[disabled]:focus, |
| fieldset[disabled] .btn-link:focus { |
| color: #9c9c9c; |
| text-decoration: none; |
| } |
| .btn-lg, |
| .btn-group-lg > .btn { |
| padding: 6px 10px; |
| font-size: 14px; |
| line-height: 1.3333333; |
| border-radius: 1px; |
| } |
| .btn-sm, |
| .btn-group-sm > .btn { |
| padding: 2px 6px; |
| font-size: 11px; |
| line-height: 1.5; |
| border-radius: 1px; |
| } |
| .btn-xs, |
| .btn-group-xs > .btn { |
| padding: 1px 5px; |
| font-size: 11px; |
| line-height: 1.5; |
| border-radius: 1px; |
| } |
| .btn-block { |
| display: block; |
| width: 100%; |
| } |
| .btn-block + .btn-block { |
| margin-top: 5px; |
| } |
| h1, |
| h2, |
| h3, |
| h4, |
| h5, |
| h6, |
| .h1, |
| .h2, |
| .h3, |
| .h4, |
| .h5, |
| .h6 { |
| font-family: inherit; |
| font-weight: 500; |
| line-height: 1.1; |
| color: inherit; |
| } |
| h1 small, |
| h2 small, |
| h3 small, |
| h4 small, |
| h5 small, |
| h6 small, |
| .h1 small, |
| .h2 small, |
| .h3 small, |
| .h4 small, |
| .h5 small, |
| .h6 small, |
| h1 .small, |
| h2 .small, |
| h3 .small, |
| h4 .small, |
| h5 .small, |
| h6 .small, |
| .h1 .small, |
| .h2 .small, |
| .h3 .small, |
| .h4 .small, |
| .h5 .small, |
| .h6 .small { |
| font-weight: 400; |
| line-height: 1; |
| color: #9c9c9c; |
| } |
| h1, |
| .h1, |
| h2, |
| .h2, |
| h3, |
| .h3 { |
| margin-top: 20px; |
| margin-bottom: 10px; |
| } |
| h1 small, |
| .h1 small, |
| h2 small, |
| .h2 small, |
| h3 small, |
| .h3 small, |
| h1 .small, |
| .h1 .small, |
| h2 .small, |
| .h2 .small, |
| h3 .small, |
| .h3 .small { |
| font-size: 65%; |
| } |
| h4, |
| .h4, |
| h5, |
| .h5, |
| h6, |
| .h6 { |
| margin-top: 10px; |
| margin-bottom: 10px; |
| } |
| h4 small, |
| .h4 small, |
| h5 small, |
| .h5 small, |
| h6 small, |
| .h6 small, |
| h4 .small, |
| .h4 .small, |
| h5 .small, |
| .h5 .small, |
| h6 .small, |
| .h6 .small { |
| font-size: 75%; |
| } |
| h1, |
| .h1 { |
| font-size: 24px; |
| } |
| h2, |
| .h2 { |
| font-size: 22px; |
| } |
| h3, |
| .h3 { |
| font-size: 16px; |
| } |
| h4, |
| .h4 { |
| font-size: 15px; |
| } |
| h5, |
| .h5 { |
| font-size: 13px; |
| } |
| h6, |
| .h6 { |
| font-size: 11px; |
| } |
| .panel { |
| margin-bottom: 20px; |
| background-color: #fff; |
| border: 1px solid transparent; |
| border-radius: 1px; |
| box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); |
| } |
| .panel-body { |
| padding: 15px; |
| } |
| .panel-heading { |
| padding: 10px 15px; |
| border-bottom: 1px solid transparent; |
| border-top-left-radius: 0px; |
| border-top-right-radius: 0px; |
| } |
| .panel-heading > .dropdown .dropdown-toggle { |
| color: inherit; |
| } |
| .panel-title { |
| margin-top: 0; |
| margin-bottom: 0; |
| font-size: 14px; |
| color: inherit; |
| } |
| .panel-title > a, |
| .panel-title > small, |
| .panel-title > .small, |
| .panel-title > small > a, |
| .panel-title > .small > a { |
| color: inherit; |
| } |
| .panel-footer { |
| padding: 10px 15px; |
| background-color: #f5f5f5; |
| border-top: 1px solid #d1d1d1; |
| border-bottom-right-radius: 0px; |
| border-bottom-left-radius: 0px; |
| } |
| .panel > .list-group, |
| .panel > .panel-collapse > .list-group { |
| margin-bottom: 0; |
| } |
| .panel > .list-group .list-group-item, |
| .panel > .panel-collapse > .list-group .list-group-item { |
| border-width: 1px 0; |
| border-radius: 0; |
| } |
| .panel > .list-group:first-child .list-group-item:first-child, |
| .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { |
| border-top: 0; |
| border-top-left-radius: 0px; |
| border-top-right-radius: 0px; |
| } |
| .panel > .list-group:last-child .list-group-item:last-child, |
| .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { |
| border-bottom: 0; |
| border-bottom-right-radius: 0px; |
| border-bottom-left-radius: 0px; |
| } |
| .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { |
| border-top-left-radius: 0; |
| border-top-right-radius: 0; |
| } |
| .panel-heading + .list-group .list-group-item:first-child { |
| border-top-width: 0; |
| } |
| .list-group + .panel-footer { |
| border-top-width: 0; |
| } |
| .panel > .table, |
| .panel > .table-responsive > .table, |
| .panel > .panel-collapse > .table { |
| margin-bottom: 0; |
| } |
| .panel > .table caption, |
| .panel > .table-responsive > .table caption, |
| .panel > .panel-collapse > .table caption { |
| padding-right: 15px; |
| padding-left: 15px; |
| } |
| .panel > .table:first-child, |
| .panel > .table-responsive:first-child > .table:first-child { |
| border-top-left-radius: 0px; |
| border-top-right-radius: 0px; |
| } |
| .panel > .table:first-child > thead:first-child > tr:first-child, |
| .panel |
| > .table-responsive:first-child |
| > .table:first-child |
| > thead:first-child |
| > tr:first-child, |
| .panel > .table:first-child > tbody:first-child > tr:first-child, |
| .panel |
| > .table-responsive:first-child |
| > .table:first-child |
| > tbody:first-child |
| > tr:first-child { |
| border-top-left-radius: 0px; |
| border-top-right-radius: 0px; |
| } |
| .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, |
| .panel |
| > .table-responsive:first-child |
| > .table:first-child |
| > thead:first-child |
| > tr:first-child |
| td:first-child, |
| .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, |
| .panel |
| > .table-responsive:first-child |
| > .table:first-child |
| > tbody:first-child |
| > tr:first-child |
| td:first-child, |
| .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, |
| .panel |
| > .table-responsive:first-child |
| > .table:first-child |
| > thead:first-child |
| > tr:first-child |
| th:first-child, |
| .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, |
| .panel |
| > .table-responsive:first-child |
| > .table:first-child |
| > tbody:first-child |
| > tr:first-child |
| th:first-child { |
| border-top-left-radius: 0px; |
| } |
| .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, |
| .panel |
| > .table-responsive:first-child |
| > .table:first-child |
| > thead:first-child |
| > tr:first-child |
| td:last-child, |
| .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, |
| .panel |
| > .table-responsive:first-child |
| > .table:first-child |
| > tbody:first-child |
| > tr:first-child |
| td:last-child, |
| .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, |
| .panel |
| > .table-responsive:first-child |
| > .table:first-child |
| > thead:first-child |
| > tr:first-child |
| th:last-child, |
| .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, |
| .panel |
| > .table-responsive:first-child |
| > .table:first-child |
| > tbody:first-child |
| > tr:first-child |
| th:last-child { |
| border-top-right-radius: 0px; |
| } |
| .panel > .table:last-child, |
| .panel > .table-responsive:last-child > .table:last-child { |
| border-bottom-right-radius: 0px; |
| border-bottom-left-radius: 0px; |
| } |
| .panel > .table:last-child > tbody:last-child > tr:last-child, |
| .panel |
| > .table-responsive:last-child |
| > .table:last-child |
| > tbody:last-child |
| > tr:last-child, |
| .panel > .table:last-child > tfoot:last-child > tr:last-child, |
| .panel |
| > .table-responsive:last-child |
| > .table:last-child |
| > tfoot:last-child |
| > tr:last-child { |
| border-bottom-right-radius: 0px; |
| border-bottom-left-radius: 0px; |
| } |
| .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, |
| .panel |
| > .table-responsive:last-child |
| > .table:last-child |
| > tbody:last-child |
| > tr:last-child |
| td:first-child, |
| .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, |
| .panel |
| > .table-responsive:last-child |
| > .table:last-child |
| > tfoot:last-child |
| > tr:last-child |
| td:first-child, |
| .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, |
| .panel |
| > .table-responsive:last-child |
| > .table:last-child |
| > tbody:last-child |
| > tr:last-child |
| th:first-child, |
| .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, |
| .panel |
| > .table-responsive:last-child |
| > .table:last-child |
| > tfoot:last-child |
| > tr:last-child |
| th:first-child { |
| border-bottom-left-radius: 0px; |
| } |
| .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, |
| .panel |
| > .table-responsive:last-child |
| > .table:last-child |
| > tbody:last-child |
| > tr:last-child |
| td:last-child, |
| .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, |
| .panel |
| > .table-responsive:last-child |
| > .table:last-child |
| > tfoot:last-child |
| > tr:last-child |
| td:last-child, |
| .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, |
| .panel |
| > .table-responsive:last-child |
| > .table:last-child |
| > tbody:last-child |
| > tr:last-child |
| th:last-child, |
| .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, |
| .panel |
| > .table-responsive:last-child |
| > .table:last-child |
| > tfoot:last-child |
| > tr:last-child |
| th:last-child { |
| border-bottom-right-radius: 0px; |
| } |
| .panel > .panel-body + .table, |
| .panel > .panel-body + .table-responsive, |
| .panel > .table + .panel-body, |
| .panel > .table-responsive + .panel-body { |
| border-top: 1px solid #d1d1d1; |
| } |
| .panel > .table > tbody:first-child > tr:first-child th, |
| .panel > .table > tbody:first-child > tr:first-child td { |
| border-top: 0; |
| } |
| .panel > .table-bordered, |
| .panel > .table-responsive > .table-bordered { |
| border: 0; |
| } |
| .panel > .table-bordered > thead > tr > th:first-child, |
| .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, |
| .panel > .table-bordered > tbody > tr > th:first-child, |
| .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, |
| .panel > .table-bordered > tfoot > tr > th:first-child, |
| .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, |
| .panel > .table-bordered > thead > tr > td:first-child, |
| .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, |
| .panel > .table-bordered > tbody > tr > td:first-child, |
| .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, |
| .panel > .table-bordered > tfoot > tr > td:first-child, |
| .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { |
| border-left: 0; |
| } |
| .panel > .table-bordered > thead > tr > th:last-child, |
| .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, |
| .panel > .table-bordered > tbody > tr > th:last-child, |
| .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, |
| .panel > .table-bordered > tfoot > tr > th:last-child, |
| .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, |
| .panel > .table-bordered > thead > tr > td:last-child, |
| .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, |
| .panel > .table-bordered > tbody > tr > td:last-child, |
| .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, |
| .panel > .table-bordered > tfoot > tr > td:last-child, |
| .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { |
| border-right: 0; |
| } |
| .panel > .table-bordered > thead > tr:first-child > td, |
| .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, |
| .panel > .table-bordered > tbody > tr:first-child > td, |
| .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, |
| .panel > .table-bordered > thead > tr:first-child > th, |
| .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, |
| .panel > .table-bordered > tbody > tr:first-child > th, |
| .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { |
| border-bottom: 0; |
| } |
| .panel > .table-bordered > tbody > tr:last-child > td, |
| .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, |
| .panel > .table-bordered > tfoot > tr:last-child > td, |
| .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, |
| .panel > .table-bordered > tbody > tr:last-child > th, |
| .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, |
| .panel > .table-bordered > tfoot > tr:last-child > th, |
| .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { |
| border-bottom: 0; |
| } |
| .panel > .table-responsive { |
| margin-bottom: 0; |
| border: 0; |
| } |
| .panel-group { |
| margin-bottom: 20px; |
| } |
| .panel-group .panel { |
| margin-bottom: 0; |
| border-radius: 1px; |
| } |
| .panel-group .panel + .panel { |
| margin-top: 5px; |
| } |
| .panel-group .panel-heading { |
| border-bottom: 0; |
| } |
| .panel-group .panel-heading + .panel-collapse > .panel-body, |
| .panel-group .panel-heading + .panel-collapse > .list-group { |
| border-top: 1px solid #d1d1d1; |
| } |
| .panel-group .panel-footer { |
| border-top: 0; |
| } |
| .panel-group .panel-footer + .panel-collapse .panel-body { |
| border-bottom: 1px solid #d1d1d1; |
| } |
| .panel-default { |
| border-color: #ddd; |
| } |
| .panel-default > .panel-heading { |
| color: #363636; |
| background-color: #f5f5f5; |
| border-color: #ddd; |
| } |
| .panel-default > .panel-heading + .panel-collapse > .panel-body { |
| border-top-color: #ddd; |
| } |
| .panel-default > .panel-heading .badge { |
| color: #f5f5f5; |
| background-color: #363636; |
| } |
| .panel-default > .panel-footer + .panel-collapse > .panel-body { |
| border-bottom-color: #ddd; |
| } |
| .panel-primary { |
| border-color: #39a5dc; |
| } |
| .panel-primary > .panel-heading { |
| color: #fff; |
| background-color: #39a5dc; |
| border-color: #39a5dc; |
| } |
| .panel-primary > .panel-heading + .panel-collapse > .panel-body { |
| border-top-color: #39a5dc; |
| } |
| .panel-primary > .panel-heading .badge { |
| color: #39a5dc; |
| background-color: #fff; |
| } |
| .panel-primary > .panel-footer + .panel-collapse > .panel-body { |
| border-bottom-color: #39a5dc; |
| } |
| .panel-success { |
| border-color: #3f9c35; |
| } |
| .panel-success > .panel-heading { |
| color: #fff; |
| background-color: #3f9c35; |
| border-color: #3f9c35; |
| } |
| .panel-success > .panel-heading + .panel-collapse > .panel-body { |
| border-top-color: #3f9c35; |
| } |
| .panel-success > .panel-heading .badge { |
| color: #3f9c35; |
| background-color: #fff; |
| } |
| .panel-success > .panel-footer + .panel-collapse > .panel-body { |
| border-bottom-color: #3f9c35; |
| } |
| .panel-info { |
| border-color: #00659c; |
| } |
| .panel-info > .panel-heading { |
| color: #fff; |
| background-color: #00659c; |
| border-color: #00659c; |
| } |
| .panel-info > .panel-heading + .panel-collapse > .panel-body { |
| border-top-color: #00659c; |
| } |
| .panel-info > .panel-heading .badge { |
| color: #00659c; |
| background-color: #fff; |
| } |
| .panel-info > .panel-footer + .panel-collapse > .panel-body { |
| border-bottom-color: #00659c; |
| } |
| .panel-warning { |
| border-color: #ec7a08; |
| } |
| .panel-warning > .panel-heading { |
| color: #fff; |
| background-color: #ec7a08; |
| border-color: #ec7a08; |
| } |
| .panel-warning > .panel-heading + .panel-collapse > .panel-body { |
| border-top-color: #ec7a08; |
| } |
| .panel-warning > .panel-heading .badge { |
| color: #ec7a08; |
| background-color: #fff; |
| } |
| .panel-warning > .panel-footer + .panel-collapse > .panel-body { |
| border-bottom-color: #ec7a08; |
| } |
| .panel-danger { |
| border-color: #cc0000; |
| } |
| .panel-danger > .panel-heading { |
| color: #fff; |
| background-color: #cc0000; |
| border-color: #cc0000; |
| } |
| .panel-danger > .panel-heading + .panel-collapse > .panel-body { |
| border-top-color: #cc0000; |
| } |
| .panel-danger > .panel-heading .badge { |
| color: #cc0000; |
| background-color: #fff; |
| } |
| .panel-danger > .panel-footer + .panel-collapse > .panel-body { |
| border-bottom-color: #cc0000; |
| } |