forked from instructure/canvas-lms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_helpDialog.scss
More file actions
89 lines (86 loc) · 1.76 KB
/
Copy path_helpDialog.scss
File metadata and controls
89 lines (86 loc) · 1.76 KB
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
@import "base/environment";
#help-dialog {
padding: 0;
overflow: visible;
position: relative;
#help-dialog-options {
list-style: none;
padding: 0;
margin: 0;
overflow: auto;
li {
a {
border-bottom: 1px solid $ic-border-light;
display: block;
padding: $ic-sp;
text-decoration: none;
font-weight: bold;
.subtext {
display: block;
@include fontSize(12px);
color: $ic-font-color--subdued;
font-weight: normal;
}
&:focus {
outline: none;
box-shadow: inset 0 0 0 1px $ic-link-color;
}
&:focus, &:hover {
background-color: $ic-bg-light-neutral;
.text { text-decoration: underline; }
}
}
&.user li.user,
&.student li.student,
&.teacher li.teacher,
&.admin li.admin {
display: block;
}
}
}
form {
padding: 10px 10px 6px;
width: 380px;
position: absolute;
left: 400px;
top: 0;
}
textarea {
height: 100px;
resize: none;
}
small {
@include fontSize(10px);
display: block;
color: #555;
margin-top: -6px;
}
.ui-state-error, .ui-state-highlight {
border-radius: 4px !important;
padding: 10px 10px 10px 35px;
position: relative;
a {
text-decoration: underline;
}
.ui-icon {
position: absolute;
left: 10px;
top: 10px;
}
}
}
.ui-dialog-header-backlink {
display: block;
float: left;
overflow: hidden;
text-indent: -999px;
width: 16px;
height: 16px;
margin-left: -4px;
margin-top: 2px;
margin-right: 10px;
background: url(/images/jqueryui/icon_sprite.png) no-repeat left -32px;
&:hover {
background-position: left -48px;
}
}