diff --git a/customize.dist/main.css b/customize.dist/main.css index 0f5863932..82af9c214 100644 --- a/customize.dist/main.css +++ b/customize.dist/main.css @@ -328,6 +328,11 @@ form.realtime table input[type="text"] { width: 80%; border: 3px solid #302B28; } +form.realtime table thead tr th input[type="text"][disabled] { + background-color: transparent; + color: #fafafa; + font-weight: bold; +} form.realtime table thead tr th .remove { color: #FF0073; cursor: pointer; diff --git a/customize.dist/src/cryptpad.less b/customize.dist/src/cryptpad.less index c36fad766..65f14e53b 100644 --- a/customize.dist/src/cryptpad.less +++ b/customize.dist/src/cryptpad.less @@ -412,6 +412,11 @@ form.realtime { thead { tr { th { + input[type="text"][disabled] { + background-color: transparent; + color: @fore; + font-weight: bold; + } .remove { color: @cp-red; cursor: pointer;