blob: da0c8b704fa2730affbfa9fb7c4ec9c79b459c07 [file] [log] [blame]
Einav Weiss Keidar1801b242018-08-13 16:19:46 +03001.dox-ui,
2.onap-sdc-portal {
3 @import 'bootstrap';
4 @import '~react-select/dist/react-select.min.css';
5 @import '~react-datepicker/dist/react-datepicker.min.css';
Michael Landoefa037d2017-02-19 12:57:33 +02006
Einav Weiss Keidar1801b242018-08-13 16:19:46 +03007 @import 'common';
8 @import 'components';
9 @import 'modules';
svishnevd9a5fea2018-01-23 16:55:40 +020010
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030011 .sdc-alert__header,
12 .sdc-error__header,
13 .sdc-info__header {
14 box-sizing: content-box;
svishnevd9a5fea2018-01-23 16:55:40 +020015 }
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030016 &.dox-ui-punch-out {
17 background-color: $content-background-color;
18 &.dox-ui-punch-out-full-page {
19 position: absolute;
20 top: 0;
21 bottom: 0;
22 left: 0;
23 right: 0;
24 overflow-y: auto;
25 }
Avi Zivb8e2faf2017-07-18 19:45:38 +030026 }
Avi Zivb8e2faf2017-07-18 19:45:38 +030027}
28
AviZi280f8012017-06-09 02:39:56 +030029/* Out of namespace context for tooltips */
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030030div[data-onboardingroot].tooltip {
31 @import 'common/variables';
32 @import 'common/typography';
AviZi280f8012017-06-09 02:39:56 +030033
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030034 &.in {
35 opacity: 1;
36 }
37 &.validation-error-message {
38 &.bottom {
39 .tooltip-arrow {
40 border-bottom-color: $red !important;
41 }
42 }
43 &.left {
44 .tooltip-arrow {
45 border-left-color: $red !important;
46 }
47 }
48 &.right {
49 .tooltip-arrow {
50 border-right-color: $red !important;
51 }
52 }
53 &.top {
54 .tooltip-arrow {
55 border-top-color: $red !important;
56 }
57 }
58 }
Avi Zivb8e2faf2017-07-18 19:45:38 +030059 &.bottom {
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030060 .tooltip-arrow {
61 border-bottom-color: $dark-gray !important;
62 }
Avi Zivb8e2faf2017-07-18 19:45:38 +030063 }
64 &.top {
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030065 .tooltip-arrow {
66 border-top-color: $dark-gray !important;
67 }
Avi Zivb8e2faf2017-07-18 19:45:38 +030068 }
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030069 &.right {
70 .tooltip-arrow {
71 border-right-color: $dark-gray !important;
72 }
Avi Ziv61070c92017-07-26 17:37:57 +030073 }
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030074 &.left {
75 .tooltip-arrow {
76 border-left-color: $dark-gray !important;
77 }
Avi Ziv61070c92017-07-26 17:37:57 +030078 }
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030079 .tooltip-inner {
80 @extend .body-1;
81 max-width: 100%;
82 background-color: $dark-gray;
83 padding: 6px 9px;
84 &:first-letter {
85 text-transform: capitalize;
86 }
talig8e9c0652017-12-20 14:30:43 +020087 }
AviZi280f8012017-06-09 02:39:56 +030088
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030089 // activity log tooltip
90 &.activity-log-message-tooltip {
91 @include base-font-regular;
92 font-size: $body-font-2;
93 .message-block {
94 text-align: left;
95 padding: 3px 12px;
96 }
Avi Ziv61070c92017-07-26 17:37:57 +030097 }
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030098 // manage permisions modal
99 &.manage-permissions-owner-tooltip {
100 .tooltip-inner {
101 width: 400px;
102 }
talig8e9c0652017-12-20 14:30:43 +0200103 }
Einav Weiss Keidar1801b242018-08-13 16:19:46 +0300104 // WS/Catalog Tile
105 &.tile-super-info {
106 .tooltip-inner {
107 font-size: $body-font-3;
108 }
talig8e9c0652017-12-20 14:30:43 +0200109 }
Einav Weiss Keidar1801b242018-08-13 16:19:46 +0300110 //dependency table error tooltip
111 &.select-action-table-error-tooltip {
112 @include base-font-regular;
113 margin-right: 5px;
114 font-size: $body-font-2;
115 .message-block {
116 text-align: left;
117 padding: 3px 12px;
118 }
119 .tooltip-arrow {
120 border-bottom-color: $red !important;
121 }
AviZi280f8012017-06-09 02:39:56 +0300122
Einav Weiss Keidar1801b242018-08-13 16:19:46 +0300123 .tooltip-inner {
124 background-color: $red;
125 padding: 6px 8px;
126 font-size: $body-font-2;
127 }
AviZi280f8012017-06-09 02:39:56 +0300128 }
Avi Ziv61070c92017-07-26 17:37:57 +0300129
Einav Weiss Keidar1801b242018-08-13 16:19:46 +0300130 // for read-only mode, vendor description in VLM overview
131 &.vendor-description-tooltip {
132 .tooltip-inner {
133 max-width: 600px;
134 }
Avi Ziv61070c92017-07-26 17:37:57 +0300135 }
Michael Landoefa037d2017-02-19 12:57:33 +0200136}
svishnev7c727c12018-05-24 13:20:51 +0300137
138/* Out of namespace context for notifications */
139.onboarding-notifications-container {
Einav Weiss Keidar1801b242018-08-13 16:19:46 +0300140 position: absolute;
141 &.position-top-right {
142 right: 30px;
143 top: 50px;
144 }
svishnev7c727c12018-05-24 13:20:51 +0300145}
svishnev71782cf2018-07-17 10:37:38 +0300146
svishnev71782cf2018-07-17 10:37:38 +0300147.onboarding-loader {
Einav Weiss Keidar1801b242018-08-13 16:19:46 +0300148 .onboarding-loader-backdrop {
149 @import 'common/variables';
150 top: 0;
151 right: 0;
152 bottom: 0;
153 left: 0;
154 position: absolute;
155 background-color: $transparent-black;
156 }
svishnev71782cf2018-07-17 10:37:38 +0300157}