Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: appengine/chromium_rietveld/new_static/components/forms.css

Issue 1001723003: Create a common directory of widgets and css. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 /*
2 * Copyright (c) 2014 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7 .form-fields {
8 display: table;
9 width: 100%;
10 }
11
12 .form-row {
13 display: table-row;
14 }
15
16 .form-label {
17 font-weight: bold;
18 color: #959595;
19 -webkit-user-select: none;
20 cursor: default;
21 white-space: nowrap;
22 vertical-align: baseline;
23 display: table-cell;
24 padding: 1.3em 16px;
25 }
26
27 .form-label-textarea {
28 vertical-align: baseline;
29 }
30
31 .form-field {
32 width: 100%;
33 position: relative;
34 vertical-align: top;
35 }
36
37 .form-field {
38 display: table-cell;
39 padding: 1em 16px;
40 }
41
42 .form-error {
43 display: block;
44 color: #DD4B39;
45 font-weight: bold;
46 padding-top: 0.5em;
47 }
48
49 .form-error:empty {
50 padding: 0;
51 }
52
53 .form-warning {
54 color: #9FA6AA;
55 font-size: 1em;
56 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698