Blame view

WebRoot/static/ace/css/less/navbar/user-menu.less 2.45 KB
ad5081d3   孙向锦   初始化项目
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
   .user-menu > li > a {
  	padding: 4px 12px;
  
  	> .@{icon} {
  		margin-right: 6px;
  		font-size: 120%;
  	}
   }
  
   .user-info {
  	max-width: 100px;
  	display: inline-block;
  	overflow: hidden;
  	text-overflow: ellipsis;
  	white-space: nowrap;
  	text-align: left;
  
  	vertical-align: top;
  	line-height: 15px; 
  	position: relative;
  	top: 6px;
  
  	 small {
  		display: block;
  	 }
   }
  
   .user_info_minified() {
  	.user-menu {
  		padding-top: 42px !important;
  	}
  	.nav-user-photo {
  		margin-right: 0;
  	}
  	.user-info {
  		position:absolute;// !important;
  		margin-top: 40px;
  		margin-left: 1px;
  		right: 2px;
  
  		z-index: @zindex-navbar-fixed + 2;
  		color: #777;
  		font-size: @font-size-user-menu;
  		width: 156px;
  		max-width: 156px;
  		
  		padding-left: 8px;
  		padding-right: 8px;
  		height: 32px;
  		line-height: 26px !important;
  
  
  		display: none;
  
  		border-bottom: 1px solid #E5E5E5;
  
  		text-align: center;
  
  		vertical-align: none;
  		line-height: normal;
  		
  		cursor: text;
  	}
  
  	.user-info > small {
  		display: inline;
  		opacity: 1;
  	}
   }
  
   @media (min-width: @screen-topbar-down-min) and (max-width: @screen-qhd-width) , (max-width: @screen-topbar-down-small) {
      .navbar:not(.navbar-collapse) .navbar-buttons {
  		.user_info_minified();
  	}
  	li.open .user-info {
  		display: inline-block !important;
  		//right: 2px;
  	}
   }
   @media (max-width: @screen-topbar-down-small) {
     .navbar.navbar-collapse .navbar-buttons {
  		.user_info_minified();
  	}
  	li.open .user-info {
  		display: inline-block !important;
  		right: 2px;
  	}
   }
   @media (min-width: @grid-float-breakpoint) {
     .user-min {
  		.user_info_minified();
  		
  		.user-info {
  			right: -3px;//because .dropdown is a bit margined
  		}
  		&.open .user-info {
  			display: inline-block !important;
  		}
     }
   }
  
   //for when navbar dropdowns become fixed
   @media (max-height: @screen-qhd-width) and (min-width: @screen-topbar-down-min) and (max-width: @screen-qhd-width) , (max-height: @screen-qhd-width) and (max-width: @screen-topbar-down-small) {
  	.navbar:not(.navbar-collapse) .navbar-buttons .user-info {
  		position: fixed;
  		right: auto;
  		margin-top: auto;
  		max-width: none;
  	}
   }
   @media (max-height: @screen-qhd-width) and (max-width: @screen-topbar-down-small) {
     .navbar.navbar-collapse .navbar-buttons .user-info {
  		position: fixed;
  		right: auto;
  		margin-top: auto;
  		max-width: none;
  	}
   }
   @media (max-height: @screen-qhd-width) and (min-width: @grid-float-breakpoint) {
     .user-min .user-info {
  		position: fixed;
  		right: auto;
  		margin-top: auto;
  		max-width: none;
     }
   }