зеркало из https://github.com/microsoft/clang-1.git
Add webkit styles using Javascript (detect for AppleWebKit)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@56408 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
b315a3940f
Коммит
12a467ff0b
|
@ -469,10 +469,21 @@ print OUT <<ENDTEXT;
|
|||
td.DESC { white-space:pre }
|
||||
td.Q { text-align:right }
|
||||
td { text-align:left }
|
||||
td.View a { white-space: nowrap; -webkit-appearance:square-button; padding-left:1em; padding-right:1em; padding-top:0.5ex; padding-bottom:0.5ex; text-decoration:none; color:black }
|
||||
tbody.scrollContent { overflow:auto }
|
||||
}
|
||||
</style>
|
||||
<script language='javascript' type="text/javascript">
|
||||
if (document.styleSheets && RegExp(" AppleWebKit/").test(navigator.userAgent))
|
||||
{
|
||||
var sheet = document.styleSheets[0];
|
||||
if (sheet) {
|
||||
var rules = sheet.cssRules;
|
||||
if (rules) {
|
||||
sheet.insertRule("td.View a { white-space: nowrap; -webkit-appearance:square-button; padding-left:1em; padding-right:1em; padding-top:0.5ex; padding-bottom:0.5ex; text-decoration:none; color:black }", rules.length);
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="sorttable.js"></script>
|
||||
<script language='javascript' type="text/javascript">
|
||||
function SetDisplay(RowClass, DisplayVal)
|
||||
|
|
Загрузка…
Ссылка в новой задаче