Custom CSS: Difference between revisions

Jump to navigation Jump to search
Andrian (talk | contribs)
No edit summary
Andrian (talk | contribs)
No edit summary
Line 226: Line 226:
=== Hide edit button in the invoice ===
=== Hide edit button in the invoice ===
  #iconedit {display: none;}
  #iconedit {display: none;}


= CONTROL PANEL =
= CONTROL PANEL =
Line 248: Line 249:
===Display red when inventory is 0===
===Display red when inventory is 0===
.inv0  .dashgrid_inventory {color: red}
.inv0  .dashgrid_inventory {color: red}


== Dashboard ==
== Dashboard ==
Line 262: Line 264:
===Hide the "Add Booking" from mobile DASHBOARD===
===Hide the "Add Booking" from mobile DASHBOARD===
  .mobiledashaddbooking{display:none;}
  .mobiledashaddbooking{display:none;}


== Guests Menu ==
== Guests Menu ==
Line 267: Line 270:
=== Hide a certain row in the "Info" tab  on  GUESTS===
=== Hide a certain row in the "Info" tab  on  GUESTS===
  .pagetypeguests .viewguest .table tr:nth-child(x) {display: none; }
  .pagetypeguests .viewguest .table tr:nth-child(x) {display: none; }


== Bookings Menu ==
== Bookings Menu ==
Line 285: Line 289:
=== Hide cancelled bookings in the BOOKINGS Table ===
=== Hide cancelled bookings in the BOOKINGS Table ===
  .bookingtable .cancelbooking {display:none;}
  .bookingtable .cancelbooking {display:none;}


== Rates Menu ==
== Rates Menu ==
Line 290: Line 295:
=== Hide a certain colum in the RATES Table ===
=== Hide a certain colum in the RATES Table ===
  .pagetyperates .bookingtable tr> *:nth-child(X)  {display: none;}
  .pagetyperates .bookingtable tr> *:nth-child(X)  {display: none;}


== Reports Menu ==
== Reports Menu ==
Line 298: Line 304:


  #reportid option:nth-child(n+4){display:none;}
  #reportid option:nth-child(n+4){display:none;}


==Booking Popup==
==Booking Popup==