background-position: center center;
background-repeat: no-repeat;
background-size: 32px;
- color: @wcfTooltipColor;
max-width: 450px;
min-height: 32px;
min-width: 150px;
z-index: 320;
.borderRadius();
- .boxShadow(0, 3px, rgba(0, 0, 0, .3), 7px);
+ .boxShadow(0, 1px, rgba(0, 0, 0, .3), 7px);
&:after {
border: 10px solid transparent;
&.top:after {
border-bottom-width: 0;
- border-top-color: rgba(0, 0, 0, .2);
+ border-top-color: rgba(0, 0, 0, .4);
bottom: -10px;
}
&.bottom:after {
- border-bottom-color: rgba(0, 0, 0, .2);
+ border-bottom-color: rgba(0, 0, 0, .4);
border-top-width: 0;
top: -10px;
}
background-color: @wcfContainerBackgroundColor;
color: @wcfColor;
opacity: 0;
- padding: @wcfGapSmall;
+ padding: @wcfGapSmall @wcfGapMedium;
.borderRadius();
}
\ No newline at end of file
}
}
+/* user information */
+.userInformation {
+ > hgroup > h2,
+ > .inlineDataList,
+ > .dataList {
+ font-size: @wcfSmallFontSize;
+ }
+}
+
+.userProfilePreview {
+ position: relative;
+
+ > .userInformation {
+ padding-bottom: 16px;// + @wcfGapTiny;
+
+ > .inlineDataList,
+ > .dataList {
+ margin-bottom: @wcfGapTiny;
+ padding-top: @wcfGapTiny;
+ border-top: 1px dotted @wcfContainerBorderColor;
+ }
+
+ > .dataList {
+ padding-bottom: @wcfGapTiny;
+ border-bottom: 1px dotted @wcfContainerBorderColor;
+ }
+
+ > .buttonList {
+ position: absolute;
+ bottom: 0;
+ right: 0;
+ }
+ }
+}
/* ##### User List #### */
.simpleUserList {
- h2, p, dl {
- font-size: @wcfSmallFontSize;
+ > li > div > .userInformation {
+ position: relative;
+
+ > .buttonList {
+ opacity: 0;
+ position: absolute;
+ right: 0;
+ top: 0;
+
+ .transition(opacity, .1s);
+ }
+ }
+
+ > li:hover > div > .userInformation > .buttonList {
+ opacity: 1;
}
}