Adrià Vilanova MartÃnez | e0d65f2 | 2022-11-06 18:49:35 +0100 | [diff] [blame] | 1 | /** |
| 2 | * Styles used to hide some UI components in order to adapt the Community |
| 3 | * Console to be shown like an importer popup for the workflow manager. |
| 4 | */ |
| 5 | header.material-header { |
| 6 | visibility: hidden; |
| 7 | } |
| 8 | |
| 9 | .material-content { |
| 10 | margin-top: 0!important; |
| 11 | } |
| 12 | |
| 13 | .material-content > .scrollable-content { |
| 14 | height: 100vh!important; |
| 15 | } |
| 16 | |
| 17 | material-drawer { |
| 18 | visibility: hidden; |
| 19 | } |
| 20 | |
| 21 | .material-content > .scrollable-content > main.shifted-right { |
| 22 | margin-left: 32px!important; |
| 23 | } |
| 24 | |
| 25 | ec-back-button { |
| 26 | visibility: hidden; |
| 27 | } |
| 28 | |
| 29 | /** |
| 30 | * Don't allow creating/modifying/deleting CRs because this breaks the logic |
| 31 | * which adds the "Select" buttons. |
| 32 | */ |
| 33 | ec-canned-response-row .action .toolbar :is( |
| 34 | [debugid="edit-button"], |
| 35 | [debugid="delete-button"]) { |
| 36 | display: none; |
| 37 | } |
| 38 | |
| 39 | material-fab.create-button { |
| 40 | display: none; |
| 41 | } |