Commit 54b46e58150188a3b6de0c4b227baa99a4b5b7eb
1 parent
e7296020
Exists in
spb-release/3.0
and in
2 other branches
Renamed class to avoid duplicates
Signed-off-by: Carlos Oliveira <carlospecter@gmail.com>
Showing
2 changed files
with
9 additions
and
9 deletions
Show diff stats
colab/accounts/templates/accounts/user_detail.html
@@ -15,7 +15,7 @@ | @@ -15,7 +15,7 @@ | ||
15 | {% block main-content %} | 15 | {% block main-content %} |
16 | 16 | ||
17 | <div id="user-profile" class="row"> | 17 | <div id="user-profile" class="row"> |
18 | - <div class="vcard col-lg-4 col-md-4 col-sm-5"> | 18 | + <div class="colab-vcard col-lg-4 col-md-4 col-sm-5"> |
19 | <div class="thumbnail"> | 19 | <div class="thumbnail"> |
20 | {% gravatar user_.email 200 %} | 20 | {% gravatar user_.email 200 %} |
21 | </div> | 21 | </div> |
colab/static/css/screen.css
@@ -138,16 +138,16 @@ div.submit { | @@ -138,16 +138,16 @@ div.submit { | ||
138 | 138 | ||
139 | /* User profile */ | 139 | /* User profile */ |
140 | 140 | ||
141 | -.vcard { | 141 | +.colab-vcard { |
142 | min-height: 400px; | 142 | min-height: 400px; |
143 | } | 143 | } |
144 | 144 | ||
145 | -.vcard .thumbnail { | 145 | +.colab-vcard .thumbnail { |
146 | width: 200px; | 146 | width: 200px; |
147 | height: 200px; | 147 | height: 200px; |
148 | } | 148 | } |
149 | 149 | ||
150 | -.vcard h1 { | 150 | +.colab-vcard h1 { |
151 | margin: 0; | 151 | margin: 0; |
152 | padding: 0; | 152 | padding: 0; |
153 | font-size: 26px; | 153 | font-size: 26px; |
@@ -155,8 +155,8 @@ div.submit { | @@ -155,8 +155,8 @@ div.submit { | ||
155 | letter-spacing: -1px; | 155 | letter-spacing: -1px; |
156 | } | 156 | } |
157 | 157 | ||
158 | -.vcard h1 span, | ||
159 | -.vcard h1 em { | 158 | +.colab-vcard h1 span, |
159 | +.colab-vcard h1 em { | ||
160 | display: inline-block; | 160 | display: inline-block; |
161 | overflow-x: hidden; | 161 | overflow-x: hidden; |
162 | text-overflow: ellipsis; | 162 | text-overflow: ellipsis; |
@@ -165,14 +165,14 @@ div.submit { | @@ -165,14 +165,14 @@ div.submit { | ||
165 | vertical-align: bottom; | 165 | vertical-align: bottom; |
166 | } | 166 | } |
167 | 167 | ||
168 | -.vcard h1 em { | 168 | +.colab-vcard h1 em { |
169 | font-weight: 300; | 169 | font-weight: 300; |
170 | font-size: 20px; | 170 | font-size: 20px; |
171 | font-size: 20px; | 171 | font-size: 20px; |
172 | letter-spacing: 1px; | 172 | letter-spacing: 1px; |
173 | } | 173 | } |
174 | 174 | ||
175 | -.vcard .divider { | 175 | +.colab-vcard .divider { |
176 | border-bottom: 1px solid #EEE; | 176 | border-bottom: 1px solid #EEE; |
177 | margin-top: 10px; | 177 | margin-top: 10px; |
178 | } | 178 | } |
@@ -417,7 +417,7 @@ span.highlighted { | @@ -417,7 +417,7 @@ span.highlighted { | ||
417 | } | 417 | } |
418 | 418 | ||
419 | /* Subscribe list */ | 419 | /* Subscribe list */ |
420 | -.vcard .label { | 420 | +.colab-vcard .label { |
421 | line-height: 2; | 421 | line-height: 2; |
422 | } | 422 | } |
423 | 423 |