Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
/* stylelint-disable unit-disallowed-list */
2
/**************************************
3
 
4
Structure of the other user role assignment panel
5
 
6
.other-user-manager-panel(.visible)
7
    .oump-wrap
8
        .oump-header
9
        .oump-content
10
            .oump-ajax-content
11
                .oump-search-results
12
                    .oump-total-users
13
                    .oump-users
14
                        .oump-user.clearfix(.odd|.even)(.enrolled)
15
                            .count
16
                            .oump-user-details
17
                                .oump-user-picture
18
                                .oump-user-specifics
19
                                    .oump-user-fullname
20
                                    .oump-user-extrafields
21
                                .oump-role-options
22
                                    .label
23
                                    .oump-assignable-role
24
                    .oump-more-results
25
            .oump-loading-lightbox(.hidden)
26
                .loading-icon
27
        .oump-footer
28
            .oump-search
29
                input
30
 
31
**************************************/
32
 
33
.other-user-manager-panel {
34
    width: 400px;
35
    background-color: #666;
36
    position: absolute;
37
    top: 10%;
38
    left: 10%;
39
    border: 1px solid #666;
40
    border-width: 0 5px 5px 0;
41
}
42
 
43
.other-user-manager-panel.hidden {
44
    display: none;
45
}
46
 
47
.other-user-manager-panel .oump-wrap {
48
    margin-top: -5px;
49
    margin-left: -5px;
50
    background-color: #fff;
51
    border: 1px solid #999;
52
    height: inherit;
53
}
54
 
55
.other-user-manager-panel .oump-header {
56
    background-color: #eee;
57
    padding: 1px;
58
}
59
 
60
.other-user-manager-panel .oump-header h2 {
61
    margin: 3px 1em 0.5em 1em;
62
    font-size: 1em;
63
}
64
 
65
.other-user-manager-panel .oump-header .oump-panel-close {
66
    width: 25px;
67
    height: 15px;
68
    position: absolute;
69
    top: 2px;
70
    right: 1em;
71
    cursor: pointer;
72
    background: url("sprite.png") no-repeat scroll 0 0 transparent;
73
}
74
 
75
.other-user-manager-panel .oump-content {
76
    text-align: center;
77
    position: relative;
78
    width: 100%;
79
    border-top: 1px solid #999;
80
    border-bottom: 1px solid #999;
81
}
82
 
83
.other-user-manager-panel .oump-ajax-content {
84
    height: 375px;
85
    overflow: auto;
86
}
87
 
88
.other-user-manager-panel .oump-search-results .oump-total-users {
89
    background-color: #eee;
90
    padding: 5px;
91
    border-bottom: 1px solid #bbb;
92
    font-size: 7pt;
93
    font-weight: bold;
94
}
95
 
96
.other-user-manager-panel .oump-search-results .oump-user {
97
    width: 100%;
98
    text-align: left;
99
    font-size: 9pt;
100
    background-color: #ddd;
101
    border-bottom: 1px solid #aaa;
102
}
103
 
104
.other-user-manager-panel .oump-search-results .oump-user .oump-user-details {
105
    background-color: #fff;
106
    margin-left: 25px;
107
    border-left: 1px solid #bbb;
108
}
109
 
110
.other-user-manager-panel .oump-search-results .oump-user.odd .oump-user-details {
111
    background-color: #f9f9f9;
112
}
113
 
114
.other-user-manager-panel .oump-search-results .oump-user .count {
115
    width: 20px;
116
    font-size: 7pt;
117
    line-height: 100%;
118
    text-align: right;
119
    float: left;
120
    padding: 5px 5px 2px 2px;
121
}
122
 
123
.other-user-manager-panel .oump-search-results .oump-user .oump-user-details .oump-user-picture {
124
    display: inline-block;
125
    margin: 3px;
126
}
127
 
128
.other-user-manager-panel .oump-search-results .oump-user .oump-user-details .oump-user-specifics {
129
    width: 250px;
130
    display: inline-block;
131
    margin: 3px;
132
    vertical-align: top;
133
}
134
 
135
.other-user-manager-panel .oump-search-results .oump-user .oump-user-details .oump-role-options {
136
    font-size: 8pt;
137
    margin-top: 2px;
138
    text-align: right;
139
    margin-right: 2px;
140
}
141
 
142
.other-user-manager-panel .oump-search-results .oump-user .oump-user-details .oump-role-options .oump-assignable-role {
143
    display: inline-block;
144
    margin: 0;
145
    padding: 3px 4px;
146
    cursor: pointer;
147
}
148
 
149
.other-user-manager-panel .oump-search-results .oump-user.assignment-in-progress .oump-assignable-role {
150
    color: #666;
151
    cursor: default;
152
}
153
 
154
.other-user-manager-panel .oump-search-results .oump-more-results {
155
    background-color: #eee;
156
    padding: 5px;
157
    cursor: pointer;
158
}
159
 
160
.other-user-manager-panel .oump-search-results .oump-user.oump-has-all-roles {
161
    background-color: #ccc;
162
}
163
 
164
.other-user-manager-panel .oump-search-results .oump-user.oump-has-all-roles .count {
165
    width: 40px;
166
}
167
 
168
.other-user-manager-panel .oump-loading-lightbox {
169
    position: absolute;
170
    width: 100%;
171
    height: 100%;
172
    top: 0;
173
    left: 0;
174
    background-color: #fff;
175
    min-width: 50px;
176
    min-height: 50px;
177
}
178
 
179
.other-user-manager-panel .oump-loading-lightbox.hidden {
180
    display: none;
181
}
182
 
183
.other-user-manager-panel .oump-loading-lightbox .loading-icon {
184
    margin: auto;
185
    vertical-align: middle;
186
    margin-top: 125px;
187
}
188
 
189
.other-user-manager-panel .oump-footer {
190
    padding: 3px;
191
    background-color: #ddd;
192
}
193
 
194
.other-user-manager-panel .oump-search {
195
    margin: 3px;
196
}
197
 
198
.other-user-manager-panel .oump-search label {
199
    padding-right: 8px;
200
}
201
 
202
.other-user-manager-panel .oump-search input {
203
    width: 70%;
204
}