Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Ticket #3171: ror-0.14.4-xhtml-case-senstive-css-ids.txt

File ror-0.14.4-xhtml-case-senstive-css-ids.txt, 2.8 kB (added by blair, 3 years ago)
Line 
1 Index: actionpack/lib/action_controller/templates/scaffolds/layout.rhtml
2 ===================================================================
3 --- actionpack/lib/action_controller/templates/scaffolds/layout.rhtml   (revision 3270)
4 +++ actionpack/lib/action_controller/templates/scaffolds/layout.rhtml   (working copy)
5 @@ -28,7 +28,7 @@
6        display: table;
7      }
8  
9 -    #ErrorExplanation {
10 +    #errorExplanation {
11        width: 400px;
12        border: 2px solid red;
13        padding: 7px;
14 @@ -37,7 +37,7 @@
15        background-color: #f0f0f0;
16      }
17  
18 -    #ErrorExplanation h2 {
19 +    #errorExplanation h2 {
20        text-align: left;
21        font-weight: bold;
22        padding: 5px 5px 5px 15px;
23 @@ -47,13 +47,13 @@
24        color: #fff;
25      }
26  
27 -    #ErrorExplanation p {
28 +    #errorExplanation p {
29        color: #333;
30        margin-bottom: 0;
31        padding: 5px;
32      }
33  
34 -    #ErrorExplanation ul li {
35 +    #errorExplanation ul li {
36        font-size: 12px;
37        list-style: square;
38      }
39 Index: actionwebservice/lib/action_web_service/templates/scaffolds/layout.rhtml
40 ===================================================================
41 --- actionwebservice/lib/action_web_service/templates/scaffolds/layout.rhtml    (revision 3270)
42 +++ actionwebservice/lib/action_web_service/templates/scaffolds/layout.rhtml    (working copy)
43 @@ -26,7 +26,7 @@
44        display: table;
45      }
46  
47 -    #ErrorExplanation {
48 +    #errorExplanation {
49        width: 400px;
50         border: 2px solid red;
51         padding: 7px;
52 @@ -35,7 +35,7 @@
53         background-color: #f0f0f0;
54      }
55  
56 -    #ErrorExplanation h2 {
57 +    #errorExplanation h2 {
58         text-align: left;
59         font-weight: bold;
60         padding: 5px 5px 5px 15px;
61 @@ -45,13 +45,13 @@
62         color: #fff;
63      }
64  
65 -    #ErrorExplanation p {
66 +    #errorExplanation p {
67         color: #333;
68         margin-bottom: 0;
69         padding: 5px;
70      }
71  
72 -    #ErrorExplanation ul li {
73 +    #errorExplanation ul li {
74         font-size: 12px;
75         list-style: square;
76      }
77 Index: railties/lib/rails_generator/generators/components/scaffold/templates/style.css
78 ===================================================================
79 --- railties/lib/rails_generator/generators/components/scaffold/templates/style.css     (revision 3270)
80 +++ railties/lib/rails_generator/generators/components/scaffold/templates/style.css     (working copy)
81 @@ -22,7 +22,7 @@
82    display: table;
83  }
84  
85 -#ErrorExplanation {
86 +#errorExplanation {
87    width: 400px;
88    border: 2px solid red;
89    padding: 7px;
90 @@ -31,7 +31,7 @@
91    background-color: #f0f0f0;
92  }
93  
94 -#ErrorExplanation h2 {
95 +#errorExplanation h2 {
96    text-align: left;
97    font-weight: bold;
98    padding: 5px 5px 5px 15px;
99 @@ -41,13 +41,13 @@
100    color: #fff;
101  }
102  
103 -#ErrorExplanation p {
104 +#errorExplanation p {
105    color: #333;
106    margin-bottom: 0;
107    padding: 5px;
108  }
109  
110 -#ErrorExplanation ul li {
111 +#errorExplanation ul li {
112    font-size: 12px;
113    list-style: square;
114  }