aboutsummaryrefslogtreecommitdiff
path: root/resources/assets/stylesheets/scss/system-notifications.scss
blob: 34c341be02745105ea27de49b844d22d402796bf (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
#system-notifications {
    &.bottom-right {
        bottom: 50px;
        right: 15px;

        .system-notification {
            box-shadow: 5px 5px var(--dark-gray-color-10);

            &.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);
            }
        }
    }

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

        .system-notification {
            box-shadow: 0 0 0 3px var(--dark-gray-color-10);

            &.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);
            }
        }
    }

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

    &.system-notifications-login {
        margin-bottom: 15px;
    }

    overflow: hidden;
    z-index: 1001;
}

.system-notification {
    background-color: var(--content-color-20);
    border: thin solid var(--content-color-40);
    color: var(--black);
    cursor: pointer;
    display: flex;
    padding: 10px;
    position: relative;

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

    .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;
        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(--black);
        text-decoration-line: underline;
    }

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

.system-notification-exception {
    background-color: var(--red-40);

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

.system-notification-error {
    background-color: var(--red-20);

    .system-notification-timeout {
        background-color: var(--red-80);
    }
}

.system-notification-warning {
    background-color: var(--yellow-20);

    .system-notification-timeout {
        background-color: var(--yellow-80);
    }
}

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

    .system-notification-timeout {
        background-color: var(--green-80);
    }
}

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

    .system-notification-timeout {
        background-color: var(--dark-violet-60);
    }
}