app/ghop/content/css/ghop.css
author Daniel Bentley <dbentley@google.com>
Wed, 15 Apr 2009 08:01:17 +0000
changeset 2184 a1bda9afa5d0
parent 66 8c86470746fc
permissions -rw-r--r--
Step 2 of moving to new seeding model. Create Seeder class, which abstracts some seeding. Move user to Seeder class, and make new OrganizationSeeder class. If people like this, I'll finish the rest soon. Patch by: Dan Bentley
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
31
8b43c541afa7 First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     1
/*
8b43c541afa7 First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     2
Copyright 2008 the Melange authors.
8b43c541afa7 First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     3
8b43c541afa7 First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     4
Licensed under the Apache License, Version 2.0 (the "License");
8b43c541afa7 First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     5
you may not use this file except in compliance with the License.
8b43c541afa7 First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     6
You may obtain a copy of the License at
8b43c541afa7 First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     7
8b43c541afa7 First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     8
  http://www.apache.org/licenses/LICENSE-2.0
8b43c541afa7 First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     9
8b43c541afa7 First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    10
Unless required by applicable law or agreed to in writing, software
8b43c541afa7 First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    11
distributed under the License is distributed on an "AS IS" BASIS,
8b43c541afa7 First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    12
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
8b43c541afa7 First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    13
See the License for the specific language governing permissions and
8b43c541afa7 First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    14
limitations under the License.
8b43c541afa7 First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    15
 */
8b43c541afa7 First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    16
8b43c541afa7 First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    17
body {
8b43c541afa7 First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    18
  font-family: Verdana, Helvetica, sans-serif;
66
8c86470746fc Finished migrating the "proto" app (which only contained a Person profile edit
Todd Larsen <tlarsen@google.com>
parents: 62
diff changeset
    19
  background-color: #DDDD00;
31
8b43c541afa7 First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    20
}
42
7878a389d558 Updated version of proto.css that defines some "form field" table cell styles
Todd Larsen <tlarsen@google.com>
parents: 31
diff changeset
    21
7878a389d558 Updated version of proto.css that defines some "form field" table cell styles
Todd Larsen <tlarsen@google.com>
parents: 31
diff changeset
    22
td.formfieldrequired {
7878a389d558 Updated version of proto.css that defines some "form field" table cell styles
Todd Larsen <tlarsen@google.com>
parents: 31
diff changeset
    23
 font-style: italic;
7878a389d558 Updated version of proto.css that defines some "form field" table cell styles
Todd Larsen <tlarsen@google.com>
parents: 31
diff changeset
    24
}
7878a389d558 Updated version of proto.css that defines some "form field" table cell styles
Todd Larsen <tlarsen@google.com>
parents: 31
diff changeset
    25
7878a389d558 Updated version of proto.css that defines some "form field" table cell styles
Todd Larsen <tlarsen@google.com>
parents: 31
diff changeset
    26
td.formfieldhelptext {
7878a389d558 Updated version of proto.css that defines some "form field" table cell styles
Todd Larsen <tlarsen@google.com>
parents: 31
diff changeset
    27
 font-style: italic;
7878a389d558 Updated version of proto.css that defines some "form field" table cell styles
Todd Larsen <tlarsen@google.com>
parents: 31
diff changeset
    28
}
7878a389d558 Updated version of proto.css that defines some "form field" table cell styles
Todd Larsen <tlarsen@google.com>
parents: 31
diff changeset
    29
7878a389d558 Updated version of proto.css that defines some "form field" table cell styles
Todd Larsen <tlarsen@google.com>
parents: 31
diff changeset
    30
td.formfielderror {
7878a389d558 Updated version of proto.css that defines some "form field" table cell styles
Todd Larsen <tlarsen@google.com>
parents: 31
diff changeset
    31
 color: #FF0000;
7878a389d558 Updated version of proto.css that defines some "form field" table cell styles
Todd Larsen <tlarsen@google.com>
parents: 31
diff changeset
    32
}
7878a389d558 Updated version of proto.css that defines some "form field" table cell styles
Todd Larsen <tlarsen@google.com>
parents: 31
diff changeset
    33
7878a389d558 Updated version of proto.css that defines some "form field" table cell styles
Todd Larsen <tlarsen@google.com>
parents: 31
diff changeset
    34
td.formfieldheading {
7878a389d558 Updated version of proto.css that defines some "form field" table cell styles
Todd Larsen <tlarsen@google.com>
parents: 31
diff changeset
    35
 font-weight: bold;
7878a389d558 Updated version of proto.css that defines some "form field" table cell styles
Todd Larsen <tlarsen@google.com>
parents: 31
diff changeset
    36
}