1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- .table tbody>tr>td{
- vertical-align: middle;
- }
- .record-type span {
- margin: 0px 2px;
- padding: 5px 10px;
- display: block;
- background: black;
- color: white;
- font-weight: bold;
- }
- .record-type span.CNAME {
- background: orange;
- }
- .record-type span.MX {
- background: magenta;
- }
- .record-type span.TXT {
- background: limegreen;
- }
- .record-type span.SPF {
- background: teal;
- }
- .record-type span.SRV {
- background: olive;
- }
- .table {
- table-layout: fixed;
- }
- .table .type {
- width: 80px;
- }
- .table .name {
- width: 200px;
- }
- .table .actions {
- width: 120px;
- }
- .table .proxy {
- width: 60px;
- }
- .table .value {
- overflow: hidden;
- white-space: nowrap;
- width: 280px;
- }
- #records .table input {
- width: 100%;
- }
- #records .table tr.saving {
- background: lightyellow;
- }
- #records .table td.multi-input label {
- display: block;
- }
- #records .table td.multi-input div {
- margin-bottom: 10px;
- }
- .nav.nav-tabs {
- margin-bottom: 10px;
- }
- .form-control.ssl {
- width: 10em;
- }
|