blob: e11c9d3e17a0da8271206ea245a2d426838738ba [file] [log] [blame]
Adrià Vilanova Martíneze0d65f22022-11-06 18:49:35 +01001/**
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 */
5header.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
17material-drawer {
18 visibility: hidden;
19}
20
21.material-content > .scrollable-content > main.shifted-right {
22 margin-left: 32px!important;
23}
24
25ec-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 */
33ec-canned-response-row .action .toolbar :is(
34 [debugid="edit-button"],
35 [debugid="delete-button"]) {
36 display: none;
37}
38
39material-fab.create-button {
40 display: none;
41}