aboutsummaryrefslogtreecommitdiffstats
path: root/app/assets/stylesheets/time_tables.css.scss
blob: ba771262ef729f677341ce5eaa921f7ac7bb6837 (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
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
// Place all the styles related to the lines controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: http://sass-lang.com/
@import "common";

#workspace.time_tables.index
{
    .time_table:after { 
        @include after_div_for_object;  
    }

    .time_tables {
        margin-top: 20px;
    }

    .time_tables:after {
        @include content_to_clear;
    }
    
    .time_table {
        @include div_for_object;

        /* to create multi-column index */
        width: 350px;
        float: left;
        padding-right: 10px;

    }
}

#workspace.time_tables.show
{
    .day_type { 
      border-style:solid;
      border-width:1px;
      }
      .period {
        padding-left:50px;
      }
      .date {
        padding-left:50px;
      }

    .summary p label {
        font-weight: bold;
    }
}        

#workspace.time_tables.edit
{
  .day_type ol {
      float: left;
      margin: 0;
      padding: 0 0 0 0;
      width: 100%;
      list_style: none outside none;
    }
  .day_type ol li {
      float: left;
      margin: 0 O 0 0;
      width: auto;
      padding: 0;
    }
  .day_type_label {
      float: left;
      margin-top: 0;
      width: 25%;
    }
  .day_type ol li label {
      padding-left: 10%;
    }
  .periods ol {
      float: left;
      margin: 0;
      padding: 0 0 0 25%;
      width: 74%;
      list_style: none outside none;
  }
  .periods ol li {
      float: left;
      margin: 0 O 0 0;
      width: auto;
      padding: 0;
    }
  .periods ol li fieldset legend label {
      width: auto;
    }
  .periods ol li fieldset ol  {
      padding: 0 10% 0 15%;
      width: auto;
    }
  .links {
    margin-left: 25%;
    padding-left: 20px;
    background: url(image-path('user_interface/ui/add.png')) no-repeat;
   }
  .dates ol {
      float: left;
      margin: 0;
      padding: 0 0 0 25%;
      width: 74%;
      list_style: none outside none;
  }
  .dates ol li {
      float: left;
      margin: 0 O 0 0;
      width: auto;
      padding: 0;
    }
  .dates ol li fieldset legend label {
      width: auto;
    }
  .dates ol li fieldset ol  {
      padding: 0 10% 0 15%;
      width: auto;
    }
  
}
#workspace.time_tables.new
{
  .day_type ol {
      float: left;
      margin: 0;
      padding: 0 0 0 0;
      width: 100%;
      list_style: none outside none;
    }
  .day_type ol li {
      float: left;
      margin: 0 O 0 0;
      width: auto;
      padding: 0;
    }
  .day_type_label {
      float: left;
      margin-top: 0;
      width: 25%;
    }
  .day_type ol li label {
      padding-left: 10%;
    }
  .periods ol {
      float: left;
      margin: 0;
      padding: 0 0 0 25%;
      width: 74%;
      list_style: none outside none;
  }
  .periods ol li {
      float: left;
      margin: 0 O 0 0;
      width: auto;
      padding: 0;
    }
  .periods ol li fieldset legend label {
      width: auto;
    }
  .periods ol li fieldset ol  {
      padding: 0 10% 0 15%;
      width: auto;
    }
  .links {
    margin-left: 25%;
    padding-left: 20px;
    background: url(image-path('user_interface/ui/add.png')) no-repeat;
   }
  .dates ol {
      float: left;
      margin: 0;
      padding: 0 0 0 25%;
      width: 74%;
      list_style: none outside none;
  }
  .dates ol li {
      float: left;
      margin: 0 O 0 0;
      width: auto;
      padding: 0;
    }
  .dates ol li fieldset legend label {
      width: auto;
    }
  .dates ol li fieldset ol  {
      padding: 0 10% 0 15%;
      width: auto;
    }
}