1234567891011121314151617181920212223242526272829303132333435 |
- /*UCD_R作为运行时的样式表*/
- .UCD_R_Tab_Line {cursor:pointer; height:20px; padding-right:6px; line-height:25px; color:#000;}/*行号*/
- .UCD_R_C_Line {line-height:20px; white-space:pre-wrap;}/*代码样式*/
- /*Error区域样式表*/
- .UCD_R_E_L { line-height:20px;}
- .UCD_R_E_L:hover {color:Gray;}
- .UCD_R_E_Help{ color:Red; font-size:12px;}
- .UCD_R_E_Help:hover{ color:Black;}
- /*弹出的Confirm对话框样式*/
- /*.UCD_R_CF { margin-left:20px; width: 300px; height:100px; text-align:left;}
- .UCD_R_CF_AL{ color:red;}
- .UCD_R_CF_WB{ color:black;}*/
- /*--------------------------------------------------编辑器提示信息区域------------------------------*/
- #UCD_TP_TB{ background-color:White;height:190px; min-width:200px; position: absolute;top:0px; left:0px; border:1px solid #ccc; overflow-x:hidden; overflow-y:scroll;}
- /*单个条目样式*/
- .UCD_TP_TB_N { height:20px}
- .UCD_TP_TB_N:hover { background-color:Silver; }
- .UCD_TP_TB_N_D{ border:1px solid white; margin-left:20px; height: 20px; line-height:20px;}/*变量文字*/
- .UCD_TP_TB_N_D:hover{ background-color:rgb(255,236,181);}/*变量文字hover*/
- .UCD_TP_TB_N_T{ float:left; height:20px; width:20px; margin-left:5px; line-height:20px; }/*变量图标*/
- /*结果显示窗体*/
- #UCD_R_Result { position:absolute; display:block;}
- /*帮助窗口样式*/
- #UCD_R_ErrHelpWin{ position:absolute; display:block; border:1px solid silver;}
- /*详细错误处理窗口*/
- #UCD_R_ErrHelp, #UCD_R_InAlert{position:absolute; display:block; border:1px solid silver;}
|