Skip to main content
summaryrefslogtreecommitdiffstats
blob: 9b70734196da519afb728f439736fad53cfa8bc2 (plain) (blame)
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
/*******************************************************************************
 * Copyright (c) 2011 Boeing.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.display.view.web;

/**
 * @author Shawn F. Cook
 */
public final class CssConstants {

   private CssConstants() {
      // Constants Class
   }

   public static final String OSEE_MAIN_CONTAINER_LAYOUT = "osee-main-container-layout";

   public static final String OSEE_HEADER_SECTION = "osee-header-section";
   public static final String OSEE_PAGE_CONTENT_SECTION = "osee-page-content-section";

   public static final String OSEE_FOOTER_SECTION = "osee-footer-section";
   public static final String OSEE_LOGO = "osee-logo";

   public static final String OSEE_HEADER_BAR = "osee-header-bar";
   public static final String OSEE_HEADER = "osee-header";
   public static final String OSEE_FOOTER = "osee-footer";
   public static final String OSEE_FOOTER_BAR = "osee-footer-bar";
   public static final String OSEE_PRODUCT_SUMMARY = "osee-product-summary";

   public static final String OSEE_SEARCH_HEADER_COMPONENT_SMALL = "osee-search-header-component-small";
   public static final String OSEE_TITLE_MEDIUM_TEXT = "osee-title-medium-text";
   public static final String OSEE_SEARCH_TEXTFIELD = "osee-search-textfield";

   public static final String OSEE_SEARCHRESULTS_NORESULTS = "osee-searchresults-noresults";
   public static final String OSEE_SEARCHRESULTS_MANYRESULTSFIELD = "osee-searchresults-manyresultsfield";
   public static final String OSEE_SEARCHRESULT_ARTNAME = "osee-searchresult-artname";
   public static final String OSEE_SEARCHRESULT_ARTNAME_NOLINK = "osee-searchresult-artname-nolink";
   public static final String OSEE_SEARCHRESULT_ARTTYPE = "osee-searchresult-arttype";
   public static final String OSEE_ATTRNAME = "osee-attrname";
   public static final String OSEE_SEARCHRESULT_MATCH_MANY = "osee-searchresult-match-many";

   public static final String OSEE_HORIZONTAL_LINE = "osee-horizontal-line";
   public static final String OSEE_BREADCRUMB_ARTNAME = "osee-breadcrumb-artname";

   public static final String OSEE_RIGHTARROW = "osee-rightarrow";
   public static final String OSEE_LEFTARROW = "osee-leftarrow";

   public static final String OSEE_ATTRIBUTELABEL_LONG = "osee-attributelabel-long";
   public static final String OSEE_ATTRIBUTELABEL = "osee-attributelabel";
   public static final String OSEE_ATTRIBUTEVALUE = "osee-attributevalue";
   public static final String OSEE_ATTRIBUTESTITLELABEL = "osee-attributestitlelabel";
   public static final String OSEE_ATTRIBUTESBORDER = "osee-attributesborder";

   public static final String OSEE_CURRENTPAGELABEL = "osee-currentpagelabel";
   public static final int OSEE_LEFTMARGINWIDTH = 15;
   public static final String OSEE_EXCEPTION = "osee-exception";
   public static final String OSEE_EXCEPTION_ERROR_TITLE_TEXT = "osee-exception-error-title-text";
   public static final String OSEE_EXCEPTION_WARNING_TITLE_TEXT = "osee-exception-warning-title-text";
   public static final String OSEE_EXCEPTION_LONGMSG = "osee-exception-longmsg";
   public static final String OSEE_EMAILDIALOG_TITLES = "osee-emaildialog-titles";

   public static final String OSEE_WORKING_LABEL_1 = "osee-working-label-1";
   public static final String OSEE_WORKING_LABEL_2 = "osee-working-label-2";
   public static final String OSEE_WORKING_LABEL_3 = "osee-working-label-3";

}

Back to the top