1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
/*
* This file is part of Cockpit.
*
* Copyright (C) 2013 Red Hat, Inc.
*
* Cockpit is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* Cockpit is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Cockpit; If not, see <http://www.gnu.org/licenses/>.
*/
@import "/page.css";
@import "/table.css";
.subscription-status-ct label {
font-size: 13px;
}
.subscription-status-ct button {
margin-left: 12px;
}
.container-fluid.alert {
margin: 20px;
}
#subscription-register-url {
margin-bottom: 3px;
}
#subscriptions-registering > span {
margin-left: 7px;
}
.form-tr-ct-title {
text-align: right;
white-space: nowrap;
color: #888888;
width: 5px; /* will be expanded by nowrap */
padding-right: 7px;
}
.form-td-ct-subscriptions {
width: 80px;
}
#subscription-proxy-use {
vertical-align: sub;
}
.form-table-ct .form-inline {
background: #f4f4f4;
border-width: 1px;
border-style: solid;
border-color: #bababa;
padding: 4px;
}
.form-group-ct {
background: #f4f4f4;
border-width: 1px;
border-style: solid;
border-color: #bababa;
padding: 4px;
width: 100%;
}
.form-group-ct tr td:last-child {
padding-right: 4px;
}
.form-group-ct tr:first-child td:last-child {
padding-top: 6px;
}
.form-group-ct tr:last-child td:last-child {
padding-bottom: 6px;
padding-top:;
}
|