blob: 53356d81b0498b9be7bec5a4b31d35f8271decf5 (
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
|
/* Copyright (c) 2013 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
#managed-mode-passphrase-page {
min-width: 350px;
padding: 5px 15px;
}
#managed-user-logo {
background-image: url('options/managed_user.png');
height: 68px;
width: 65px;
}
#entry {
margin: 15px 0;
}
#passphrase-entry {
width: 100%;
}
#buttons {
float: right;
}
html[dir=rtl] #buttons {
float: left;
}
#incorrect-passphrase-warning {
color: red;
font-weight: bold;
}
|