aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/GroupMemberView.scss
blob: d50569b261da1ea030cdcc05a7cc2344b6425ddc (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
.editing-interface {
    width: 100%;
    height: 100%;
    padding: 10px;
    float: right;
    overflow: visible;

    hr {
        margin-top: 20;
    }

    button {
        outline: none;
        border-radius: 5px;
        border: 0px;
        text-transform: none;
        letter-spacing: 2px;
        font-size: 75%;
        padding: 10px;
        margin: 10px;
        transition: transform 0.2s;
        margin: 2px;
    }

    .memberView-closeButton {
        position: absolute;
        right: 1em;
        top: 1em;
        cursor: pointer;
        z-index: 1000;
    }

    .editing-header {
        margin-bottom: 5;

        .group-title {
            font-weight: bold;
            font-size: 15;
            text-align: center;
            border: none;
            outline: none;
            height: 20;
            text-overflow: ellipsis;
            background: none;

            &:hover {
                text-overflow: unset;
                overflow-x: auto;
            }
        }

        .sort-emails {
            float: left;
            margin: -18 0 0 5;
            cursor: pointer;
        }

        .group-buttons {
            display: flex;
            margin-top: 5;
            margin-bottom: 25;

            .add-member-dropdown {
                margin-right: 3;
                max-height: 30;
                width: 250px;
                display: inline-flex;
                flex-direction: row;
                border: 2px solid;
                border-radius: 4px;
                border-color: inherit;
                background: white;
                color: black;
            }

            .delete-button {
                align-self: center;
                background: inherit;
            }
        }
    }

    .style-divider {
        width: 98%;
        height: 1px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .editing-contents {
        overflow-y: auto;
        height: 62%;
        width: 100%;
        margin-top: -15px;

        .editing-row {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            position: relative;

            .user-email {
                min-width: 65%;
                word-break: break-all;
                padding: 0 5;
                text-align: left;
            }

            .remove-button {
                position: absolute;
                right: 10;
                cursor: pointer;
            }
        }
    }


}