Update wcDocker to enable properly translation of the context menu options.

This commit is contained in:
Dave Page
2015-03-03 11:11:15 +00:00
parent cd059aaea3
commit 527620d34e
14 changed files with 5437 additions and 5375 deletions

View File

@@ -461,6 +461,26 @@ html, body {
border-radius: 6px;
}
::-webkit-scrollbar {
width: 12px;
height: 12px;
background-color: #888;
}
::-webkit-scrollbar-corner {
background-color: #888;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.7);
}
.wcMenuList, .context-menu-list {
border: 1px solid #111;
}

File diff suppressed because one or more lines are too long