Advertisement
Guest User

Abyss Web Server Console CSS Mod

a guest
Dec 9th, 2024
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.76 KB | None | 0 0
  1.  
  2. /* Get wider and more comfortable columns in Hosts view */
  3. div.wform_frame > div#_hosts_Pane > div.wform_item_name {
  4.     text-align: center          !important;
  5.     display:    table-row-group !important;
  6.    
  7.     width:      calc(100% - 1em - 5px) !important;
  8.     max-width:  calc(100% - 1em - 5px) !important;
  9. }
  10.  
  11. div.wform_frame > div#_hosts_Pane > div.wform_item_content,
  12. div.wform_frame > div#_hosts_Pane > div.wform_item_content > span > div.wlist_frame > div.wlist_secondary_frame > table.wlist {
  13.    
  14.     width:      1100px !important;
  15.     max-width:  1100px !important;
  16. }
  17.  
  18. /* Get wider and more comfortable rows in URLRewrite */
  19. table.wlist > thead > tr > td.wlist_item_content_head,
  20. table.wlist > tbody > tr > td.wlist_item_content,
  21. table.wlist > tfoot > tr > td.wlist_footer {
  22.     width:          450px       !important;
  23.     max-width:      450px       !important;
  24.    
  25.     overflow-wrap:  break-word  !important;
  26.     white-space:    pre-wrap    !important;
  27. }
  28.  
  29. div.wform_frame > div > div.wform_item_name {
  30.     width:          100px       !important;
  31.     max-width:      100px       !important;
  32.    
  33.     overflow-wrap:  break-word  !important;
  34.     white-space:    pre-wrap    !important;
  35. }
  36.  
  37. div.wform_frame > div > div.wform_item_name > label,
  38. div.wform_frame > div > div.wform_item_name > label > a {
  39.     /*
  40.     display:        contents    !important;
  41.     */
  42.     text-align:     center      !important;
  43.    
  44.     display:        flex        !important;
  45.     flex-direction: column      !important;
  46.     align-items:    center      !important;
  47.  
  48.     padding:        0           !important;
  49. }
  50.  
  51. /* Override console CSS to allow the CSS mods to work */
  52. .wform_item_name, .wform_item_name_error {
  53.     display:        flex        !important;
  54. }
  55.  
  56.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement