Commit 9040187691bb07ef60dce1c4ddf8b1bbc628f886
1 parent
7daa556e
Exists in
master
and in
19 other branches
Renamed vcard to colab-vcard
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 | 15 | {% block main-content %} |
16 | 16 | |
17 | 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 | 19 | <div class="thumbnail"> |
20 | 20 | {% gravatar user_.email 200 %} |
21 | 21 | </div> | ... | ... |
colab/static/css/screen.css
... | ... | @@ -135,16 +135,16 @@ div.submit { |
135 | 135 | |
136 | 136 | /* User profile */ |
137 | 137 | |
138 | -.vcard { | |
138 | +.colab-vcard { | |
139 | 139 | min-height: 400px; |
140 | 140 | } |
141 | 141 | |
142 | -.vcard .thumbnail { | |
142 | +.colab-vcard .thumbnail { | |
143 | 143 | width: 200px; |
144 | 144 | height: 200px; |
145 | 145 | } |
146 | 146 | |
147 | -.vcard h1 { | |
147 | +.colab-vcard h1 { | |
148 | 148 | margin: 0; |
149 | 149 | padding: 0; |
150 | 150 | font-size: 26px; |
... | ... | @@ -152,8 +152,8 @@ div.submit { |
152 | 152 | letter-spacing: -1px; |
153 | 153 | } |
154 | 154 | |
155 | -.vcard h1 span, | |
156 | -.vcard h1 em { | |
155 | +.colab-vcard h1 span, | |
156 | +.colab-vcard h1 em { | |
157 | 157 | display: inline-block; |
158 | 158 | overflow-x: hidden; |
159 | 159 | text-overflow: ellipsis; |
... | ... | @@ -162,14 +162,14 @@ div.submit { |
162 | 162 | vertical-align: bottom; |
163 | 163 | } |
164 | 164 | |
165 | -.vcard h1 em { | |
165 | +.colab-vcard h1 em { | |
166 | 166 | font-weight: 300; |
167 | 167 | font-size: 20px; |
168 | 168 | font-size: 20px; |
169 | 169 | letter-spacing: 1px; |
170 | 170 | } |
171 | 171 | |
172 | -.vcard .divider { | |
172 | +.colab-vcard .divider { | |
173 | 173 | border-bottom: 1px solid #EEE; |
174 | 174 | margin-top: 10px; |
175 | 175 | } |
... | ... | @@ -303,7 +303,7 @@ span.highlighted { |
303 | 303 | } |
304 | 304 | |
305 | 305 | /* Subscribe list */ |
306 | -.vcard .label { | |
306 | +.colab-vcard .label { | |
307 | 307 | line-height: 2; |
308 | 308 | } |
309 | 309 | ... | ... |