Changeset 674 for trunk/ipdb.css


Ignore:
Timestamp:
01/14/15 12:58:58 (9 years ago)
Author:
Kris Deugau
Message:

/trunk

Start extending rDNS support to allow entering per-IP reverse names. See #1.

  • configuration for maximum IP list length
  • CSS to support hideable space so longer lists don't distort and confuse the page too much
  • Hideable space on the assignment confirmation page for per-IP fields
  • Generate IP list for assignment confirmation - note we can't do it on the previous page without heavy AJAX (or heavier Javascript) because we don't know what block we're even assigning at that stage.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ipdb.css

    r580 r674  
    122122}
    123123
     124/* Reverse DNS odds and ends */
     125div.rdns {
     126        max-height: 20em;
     127//      overflow-y: scroll;
     128        overflow-x: hidden;
     129//      display:inline-block;
     130        width: 600px;
     131//      width: 16em;
     132        border: solid 1px #000000;
     133}
     134
     135/* Abuse collapsible list tree for hideable page segment */
     136
     137/* hide the content <li> */
     138.collapsible li > input + * {
     139        display: none;
     140}
     141/* when the input is checked, show the content <li> */
     142.collapsible li > input:checked + * {
     143        display: block;
     144}
     145/* hide the checkbox */
     146.collapsible li > input {
     147        display: none;
     148        margin: 0em;
     149        padding: 0px;
     150}
     151/* mostly just making the input label clickable */
     152.collapsible label {
     153        cursor: pointer;
     154        display: inline;
     155        margin: 0em;
     156        padding: 0px;
     157        padding-left: 10px;
     158}
     159/* be nice if we could make this work without the HTML list structure... */
     160.notalist {
     161        list-style: none;
     162        margin: 0;
     163        padding: 3px;
     164}
     165
     166/* done hideable page segment */
     167
     168/* Per-IP rDNS listings on edit allocation page */
     169.revdata {
     170        background-color: #C8D3DE;
     171}
     172.host {
     173        width: 450px;
     174//      width: 35em;
     175}
     176
    124177/* legacy defs */
    125178tr.hack {
Note: See TracChangeset for help on using the changeset viewer.