Browse Source

增加没填写信息的提示

outaozhen 7 years ago
parent
commit
34f91ade5d
2 changed files with 8 additions and 3 deletions
  1. 3 3
      admin-myinfo.html
  2. 5 0
      css/global.css

+ 3 - 3
admin-myinfo.html

@@ -78,11 +78,11 @@
 					</table>
 					<table class="table table-bordered table-condensed">
 						<tr>
-							<th class="taC" width="150">性别</th><td width="260"><label class="radio inline"><input type="radio">男</label> <label class="radio inline"><input type="radio">女</label></td>
-							<th class="taC" width="150">出生日期</th><td><input type="date"></td>
+							<th class="taC" width="150">性别</th><td width="260" class="alert-warning"><label class="radio inline"><input type="radio">男</label> <label class="radio inline"><input type="radio">女</label></td>
+							<th class="taC" width="150">出生日期</th><td class="alert-warning"><input type="date"></td>
 						</tr>
 						<tr>
-							<th class="taC" width="150">民族</th><td><input type="text"></td>
+							<th class="taC" width="150">民族</th><td class="alert-warning"><input type="text"></td>
 							<th class="taC" width="150">婚姻状况</th><td><select><option>已婚</option><option>未婚</option></select></td>
 						</tr>
 					</table>

+ 5 - 0
css/global.css

@@ -3859,4 +3859,9 @@ td div.dlLev3{
 }
 .tipConactive{
   display:none;
+}
+.alert-warning {
+  color: #856404;
+  background-color: #fff3cd;
+  border-color: #ffeeba;
 }