aboutsummaryrefslogtreecommitdiff
path: root/resources/assets/stylesheets/scss/system-notifications.scss
blob: 9e817c108e7527289e867ede506210d6a1aee1c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
@use 'variables';

#system-notifications {
    &.bottom-right {
        bottom: 40px;
        right: 15px;

        .system-notification {
            &.system-notification-slide-enter,
            &.system-notification-slide-leave-to {
                opacity: 0;
                transform: translateX(100%);
            }

            &.system-notification-slide-leave,
            &.system-notification-slide-enter-to {
                opacity: 1;
                transform: translateX(0);
            }

            &.system-notification-slide-enter-active,
            &.system-notification-slide-leave-active {
                transition: all var(--transition-duration-superslow) ease-in-out;
            }
        }

        &:not(.system-notifications-login) {
            position: fixed;
            width: 400px;
        }

    }

    &.top-center {
        left: calc(50% - 300px);
        top: 40px;

        .system-notification {
            &.system-notification-slide-enter,
            &.system-notification-slide-leave-to {
                opacity: 0;
                transform: translateY(-100%);
            }

            &.system-notification-slide-leave,
            &.system-notification-slide-enter-to {
                opacity: 1;
                transform: translateY(0);
            }

            &.system-notification-slide-enter-active,
            &.system-notification-slide-leave-active {
                transition: all var(--transition-duration-slow) ease-in-out;
            }

        }

        &:not(.system-notifications-login) {
            position: fixed;
            width: 600px;
        }

    }

    &.system-notifications-login {
        min-height: 100px;
        width: 404px;
        margin: auto;
    }

    overflow: visible;
    z-index: 1000;
}

.system-notification {
    background-color: var(--content-color-20);
    color: var(--color--white);
    cursor: pointer;
    display: flex;
    margin-bottom: 6px;
    min-height: 60px;
    padding: 5px;
    position: relative;

    .system-notification-icon {
        flex: 0;
        padding: 10px;
    }

    .system-notification-content {
        flex: 1;
        height: auto;
        margin: auto 25px auto 10px;
        word-wrap: break-word;

        .system-notification-details {
            .system-notification-details-content {
                padding-left: 10px;
            }
        }
    }

    .system-notification-close {
        align-self: normal;
        display: none;
        flex: 0;
        height: 20px;
        width: 20px;

        img, svg {
            cursor: pointer;
            position: absolute;
            right: 10px;
            top: 10px;
        }
    }

    .system-notification-timeout {
        &.system-notification-timeout-enter-active,
        &.system-notification-timeout-leave-active {
            transition: width 5s linear;
        }

        &.system-notification-timeout-enter {
            width: 100%;
        }

        &.system-notification-timeout-leave {
            width: 0;
        }

        background-color: var(--base-color-40);
        bottom: 0;
        height: 5px;
        left: 0;
        position: absolute;
        width: 0;
    }

    &.system-notification-disrupted .system-notification-timeout {
        display: none;
    }

    a:not(.system-notification-message) {
        color: var(--color--white);
        text-decoration-line: underline;
    }

    a.system-notification-message {
        color: var(--color--white);
        text-decoration: unset;
    }

    &:hover {
        .system-notification-close {
            display: unset;
        }
    }

}

.system-notification-exception {
    background-color: var(--color--warning);
    color: var(--color--white);

    .system-notification-timeout {
        background-color: var(--color--warning-alternative);
    }
}

.system-notification-error {
    background-color: var(--color--warning);
    color: var(--color--white);

    .system-notification-timeout {
        background-color: var(--color--warning-alternative);
    }
}

.system-notification-warning {
    background-color: var(--color--attention);
    color: var(--color--black);

    .system-notification-timeout {
        background-color: var(--color--attention-alternative);
    }

    a:not(.system-notification-message) {
        color: var(--color--white);
        text-decoration-line: underline;
    }

    a.system-notification-message {
        color: var(--color--white);
        text-decoration: unset;
    }

}

.system-notification-success {
    background-color: var(--color--good);

    .system-notification-timeout {
        background-color: var(--color--good-alternative);
    }
}

.system-notification-info {
    background-color: var(--color--info);

    .system-notification-timeout {
        background-color: var(--color--info-alternative);
    }
}