Catalog alignment
[sdc.git] / catalog-ui / src / assets / styles / global.less
1 html {
2     height: 100%;
3 }
4
5 body {
6     .b_7;
7     height: 100%;
8     margin: auto;
9     position: relative;
10     user-select: text;
11 }
12
13 * {
14     box-sizing: border-box;
15     margin: 0;
16 }
17
18 html, body {
19     height: 100%;
20     overflow: hidden;
21 }
22
23 a {
24     text-decoration: none;
25 }
26
27 canvas {
28     outline: none;
29 }
30
31 .download-artifact {
32     .hand;
33 }
34
35 // ---------------------------------------------------------------------------------------------------
36 // bootstrap overrides
37 // ---------------------------------------------------------------------------------------------------
38 html {
39
40     .w-sdc-resource-container {
41         padding: 20px 0;
42     }
43
44     // Hover on notification should keep it with opacity 1.
45     .ui-notification {
46         &.clickable {
47             &:hover {
48                 opacity: 1;
49             }
50         }
51     }
52
53 }
54
55 *[hidden] {
56     display: none !important;
57 }
58
59 .sdc-tooltip {
60     max-width: 300px;
61     word-wrap: break-word;
62 }