This file is indexed.

/usr/share/edubuntu-server-manager/static/css/forms.css is in edubuntu-server-manager 14.02.2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
form ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
form li {
    margin-bottom: 16px;
}
form li.form-submit {
    padding: 8px 0 0 0;
    margin-bottom: 0;
    text-align: right;
}
.form-errors,
form .errors,
form .field-error {
    color: #DE3E25;
}
form label {
    display: block;
    margin-bottom: 4px;
}
li ul li label {
    display: inline;
}
input,
select {
    margin: 0;
}
label .required {
    color: #0d4153;
}
form .help {
    display: block;
    color: #aea79f;
}
input[type="checkbox"] {
    margin-right: 3px;
}
textarea,
input[type="password"],
input[type="text"] {
    width: 350px;
    padding: 4px;
    border: 1px solid #999;
    font-size: 13px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background: #FFF;
    overflow: auto;
    white-space: nowrap;
    word-wrap: normal;
}
textarea:focus,
input[type="password"]:focus,
input[type="text"]:focus {
    border-color: #000;
}
li.error textarea,
li.error input[type="password"],
li.error input[type="text"] {
    background-color: #F2CFCE;
}
input[type="text"].disabled {
    background-color: #f2f2f2;
}
input[type="text"]:focus {
    border: 1px solid #999;
}
a.button:hover {
    text-decoration: none;
}
.yui3-button,
.button,
button,
input[type="submit"] {
    padding: 4px 20px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    border: 1px solid #ab370f;
    background-color: #DD4814;
    background-image: linear-gradient(bottom, rgb(199,66,18) 0%, rgb(221,74,20) 100%);
    background-image: -o-linear-gradient(bottom, rgb(199,66,18) 0%, rgb(221,74,20) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(199,66,18) 0%, rgb(221,74,20) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(199,66,18) 0%, rgb(221,74,20) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(199,66,18) 0%, rgb(221,74,20) 100%);
    -webkit-box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}
.yui3-button:hover,
.button:hover,
button:hover,
input[type="submit"]:hover {
    background-image: linear-gradient(bottom, rgb(199,66,18) 0%, rgb(236,94,43) 100%);
    background-image: -o-linear-gradient(bottom, rgb(199,66,18) 0%, rgb(236,94,43) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(199,66,18) 0%, rgb(236,94,43) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(199,66,18) 0%, rgb(236,94,43) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(199,66,18) 0%, rgb(236,94,43) 100%);
    text-decoration: none;
}
.yui3-button,
.button {
    display: inline-block;
}

/* Secondary buttons */
.yui3-button.secondary,
.button.secondary,
button.secondary,
input[type="submit"].secondary {
    border-color: #262626;
    background-color: #333;
    background-image: linear-gradient(bottom, rgb(51,51,51) 0%, rgb(77,77,77) 100%);
    background-image: -o-linear-gradient(bottom, rgb(51,51,51) 0%, rgb(77,77,77) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(51,51,51) 0%, rgb(77,77,77) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(51,51,51) 0%, rgb(77,77,77) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(51,51,51) 0%, rgb(77,77,77) 100%);
    -webkit-box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
}
.yui3-button.secondary:hover,
.button.secondary:hover,
button.secondary:hover,
input[type="submit"].secondary:hover {
    background-image: linear-gradient(bottom, rgb(51,51,51) 0%, rgb(90,90,90) 100%);
    background-image: -o-linear-gradient(bottom, rgb(51,51,51) 0%, rgb(90,90,90) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(51,51,51) 0%, rgb(90,90,90) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(51,51,51) 0%, rgb(90,90,90) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(51,51,51) 0%, rgb(90,90,90) 100%);
}
/* Disabled buttons */
.yui3-button.disabled,
.button.disabled,
button.disabled {
    cursor: not-allowed;
    border-color: #999;
    background-image: linear-gradient(bottom, rgb(200,200,200) 0%, rgb(150,150,150) 100%);
    background-image: -o-linear-gradient(bottom, rgb(200,200,200) 0%, rgb(150,150,150) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(200,200,200) 0%, rgb(150,150,150) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(200,200,200) 0%, rgb(150,150,150) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(200,200,200) 0%, rgb(150,150,150) 100%);
}
.link-button {
    display: inline-block;
    padding: 6px 0;
}
.spinner {
    float: right;
    margin: 8px 10px 0 0;
}


/******************************************************************************
    modifier: inline-form
*/
.inline-form label {
    display: inline;
    margin-right: 4px;
}