| 1 |
//------------------------------ |
| 2 |
// List View |
| 3 |
//------------------------------ |
| 4 |
.uwp_page { |
| 5 |
.uwp-users-list-user-social { |
| 6 |
display: block; |
| 7 |
overflow: hidden; |
| 8 |
} |
| 9 |
.uwp-profile-social-ul { |
| 10 |
overflow: hidden; |
| 11 |
a, a:visited { |
| 12 |
color: #757575 |
| 13 |
} |
| 14 |
} |
| 15 |
|
| 16 |
.uwp-users-list-user-name > h3 { |
| 17 |
a { |
| 18 |
text-decoration: none !important; |
| 19 |
box-shadow: none !important; |
| 20 |
white-space: nowrap; |
| 21 |
text-overflow: ellipsis; |
| 22 |
overflow: hidden; |
| 23 |
display: inline; |
| 24 |
} |
| 25 |
} |
| 26 |
|
| 27 |
ul.uwp-users-list-wrap { |
| 28 |
clear: both; |
| 29 |
margin: 0; |
| 30 |
|
| 31 |
li.uwp-users-list-user { |
| 32 |
border-bottom: 1px solid #ccc; |
| 33 |
margin: 0 0 20px; |
| 34 |
padding-bottom: 20px; |
| 35 |
overflow: hidden; |
| 36 |
list-style: none; |
| 37 |
.uwp-profile-name > h3 { |
| 38 |
display: inline; |
| 39 |
} |
| 40 |
} |
| 41 |
|
| 42 |
.uwp-button-disable-wrap { |
| 43 |
visibility: hidden; |
| 44 |
display: none; |
| 45 |
} |
| 46 |
} |
| 47 |
|
| 48 |
.uwp-users-list > ul { |
| 49 |
list-style: outside none none; |
| 50 |
padding: 0; |
| 51 |
margin: 0; |
| 52 |
} |
| 53 |
|
| 54 |
.uwp-users-list-user-avatar { |
| 55 |
float: left; |
| 56 |
margin: 0 20px 0 0; |
| 57 |
max-width: 128px |
| 58 |
} |
| 59 |
|
| 60 |
.uwp-user-loop-action{ |
| 61 |
float: left; |
| 62 |
} |
| 63 |
.uwp-user-search { |
| 64 |
float: left; |
| 65 |
input[type="text"]="text""] { |
| 66 |
padding: 9px; |
| 67 |
} |
| 68 |
.uwp-search-submit { |
| 69 |
padding: 9px 15px; |
| 70 |
} |
| 71 |
input { |
| 72 |
display: inline-block !important; |
| 73 |
} |
| 74 |
} |
| 75 |
|
| 76 |
.uwp-user-views{ |
| 77 |
float: left; |
| 78 |
} |
| 79 |
.uwp-user-sort { |
| 80 |
float: left; |
| 81 |
#uwp_layout, |
| 82 |
#uwp_sort_by { |
| 83 |
height: 35px; |
| 84 |
} |
| 85 |
} |
| 86 |
} |
| 87 |
|
| 88 |
//------------------------------ |
| 89 |
// Grid View |
| 90 |
//------------------------------ |
| 91 |
.uwp_page { |
| 92 |
ul.uwp-users-list-wrap.uwp_gridview { |
| 93 |
li.uwp-users-list-user { |
| 94 |
border: 1px solid #ccc; |
| 95 |
display: inline-block; |
| 96 |
text-align: center; |
| 97 |
.uwp-users-list-extra { |
| 98 |
display: none; |
| 99 |
} |
| 100 |
margin-bottom: 0; |
| 101 |
} |
| 102 |
|
| 103 |
.uwp-users-list-user-social { |
| 104 |
text-align: center; |
| 105 |
} |
| 106 |
.uwp-users-list-user-bio { |
| 107 |
display: none; |
| 108 |
} |
| 109 |
} |
| 110 |
} |
| 111 |
|
| 112 |
|
| 113 |
.uwp_gridview_5col { |
| 114 |
li { |
| 115 |
width: 19%; |
| 116 |
width: -webkit-calc(20% - 5.2px); |
| 117 |
width: -moz-calc(20% - 5.2px); |
| 118 |
width: calc(20% - 5.2px); |
| 119 |
} |
| 120 |
&:nth-child(5n+5) { |
| 121 |
margin-right: 0; |
| 122 |
} |
| 123 |
} |
| 124 |
|
| 125 |
.uwp_gridview_4col { |
| 126 |
li { |
| 127 |
width: 24%; |
| 128 |
width: -webkit-calc(25% - 5px); |
| 129 |
width: -moz-calc(25% - 5px); |
| 130 |
width: calc(25% - 5px); |
| 131 |
} |
| 132 |
&:nth-child(4n+4) { |
| 133 |
margin-right: 0; |
| 134 |
} |
| 135 |
} |
| 136 |
|
| 137 |
.uwp_gridview_3col { |
| 138 |
li { |
| 139 |
width: 32%; |
| 140 |
width: -webkit-calc(33.3% - 4.8px); |
| 141 |
width: -moz-calc(33.3% - 4.8px); |
| 142 |
width: calc(33.3% - 4.8px); |
| 143 |
} |
| 144 |
&:nth-child(3n+3) { |
| 145 |
margin-right: 0; |
| 146 |
} |
| 147 |
} |
| 148 |
|
| 149 |
.uwp_gridview_2col { |
| 150 |
li { |
| 151 |
width: 48%; |
| 152 |
width: -webkit-calc(50% - 4px); |
| 153 |
width: -moz-calc(50% - 4px); |
| 154 |
width: calc(50% - 4px); |
| 155 |
} |
| 156 |
&:nth-child(2n+2) { |
| 157 |
margin-right: 0; |
| 158 |
} |
| 159 |
} |
| 160 |
|
| 161 |
.uwp-users-list { |
| 162 |
.uwp-profile-header-img { |
| 163 |
display: none; |
| 164 |
} |
| 165 |
.uwp_gridview { |
| 166 |
.uwp-profile-header-img { |
| 167 |
display: block; |
| 168 |
} |
| 169 |
} |
| 170 |
} |
| 171 |
|
| 172 |
@media only screen and (max-width: 660px) { |
| 173 |
.uwp_gridview_2col, |
| 174 |
.uwp_gridview_3col, |
| 175 |
.uwp_gridview_4col, |
| 176 |
.uwp_gridview_5col { |
| 177 |
li { |
| 178 |
width: -webkit-calc(50% - 4px); |
| 179 |
width: -moz-calc(50% - 4px); |
| 180 |
width: calc(50% - 4px); |
| 181 |
} |
| 182 |
} |
| 183 |
} |
| 184 |
|
| 185 |
@media only screen and (max-width: 1060px) { |
| 186 |
.uwp_gridview_2col, |
| 187 |
.uwp_gridview_3col, |
| 188 |
.uwp_gridview_4col, |
| 189 |
.uwp_gridview_5col { |
| 190 |
li { |
| 191 |
width: -webkit-calc(50% - 14px); |
| 192 |
width: -moz-calc(50% - 14px); |
| 193 |
width: calc(50% - 14px); |
| 194 |
} |
| 195 |
} |
| 196 |
} |
| 197 |
|
| 198 |
@media only screen and (max-width: 320px) { |
| 199 |
.uwp_gridview_2col, |
| 200 |
.uwp_gridview_3col, |
| 201 |
.uwp_gridview_4col, |
| 202 |
.uwp_gridview_5col { |
| 203 |
li { |
| 204 |
max-width: inherit; |
| 205 |
width: 100%; |
| 206 |
} |
| 207 |
} |
| 208 |
} |
| 209 |
|
| 210 |
.uwp_page { |
| 211 |
.uwp-users-list { |
| 212 |
float: left; |
| 213 |
.uwp_listview { |
| 214 |
.uwp-profile-avatar { |
| 215 |
.uwp-profile-avatar-inner>img { |
| 216 |
margin: 0 !important; |
| 217 |
border: 0; |
| 218 |
} |
| 219 |
.uwp-profile-avatar-inner { |
| 220 |
max-width: 150px; |
| 221 |
width: 100%; |
| 222 |
position: relative; |
| 223 |
float: left; |
| 224 |
margin: 0 20px 0 0; |
| 225 |
} |
| 226 |
} |
| 227 |
} |
| 228 |
} |
| 229 |
} |
| 230 |
|
| 231 |
.uwp-users-list-user { |
| 232 |
-webkit-transition: all 0.5s ease; |
| 233 |
-moz-transition: all 0.5s ease; |
| 234 |
-o-transition: all 0.5s ease; |
| 235 |
transition: all 0.5s ease; |
| 236 |
} |