mirror of
https://github.com/OMGeeky/andors-trail.git
synced 2026-01-06 11:39:55 +01:00
Added initial implementation of translation validator. git-svn-id: https://andors-trail.googlecode.com/svn/trunk@193 08aca716-68be-ccc6-4d58-36f5abd142ac
57 lines
3.4 KiB
CSS
57 lines
3.4 KiB
CSS
html,body { margin:0; padding:0; height: 100%; font-size: 0.9em; }
|
|
#screen { height: 100%; background-color: #a0c0ff; color: black; position: relative; font-family: sans-serif; }
|
|
#screen #top { height: 50px; color: #eeeeee; }
|
|
#screen #top #title { font-size: 2em; float: left; text-shadow: rgba(0, 0, 0, 0.5) 2px 2px 1px; }
|
|
#screen #top #version { font-size: 10pt; margin-left: 3ex; }
|
|
.andorsTrailLogo { background-image: url(logo.png); background-repeat: no-repeat; background-position: 3px 3px; padding:10px 0px 15px 50px; }
|
|
#screen #top #buttons { float: right; font-size: 1.2em; margin: 10px; }
|
|
#screen .workarea { margin: 5px; border: 1px #c0d0ff solid; background-color: #eeeeee; position: absolute; top: 50px; bottom: 0; }
|
|
#screen #left { width: 250px; padding: 0px; font-size: 1em; }
|
|
#screen #center { left: 256px; right: 0; }
|
|
#screen #center #tabs { border: 0px; padding: 0px; }
|
|
#screen #centerwide { left: 0px; right: 0; }
|
|
|
|
.ui-icon-close { float: left; margin: 0.4em 0.2em 0 0; cursor: pointer; }
|
|
.hidden { display: none; }
|
|
|
|
.fieldWithLabel { font-size: 0.9em; }
|
|
.fieldWithLabel .label { display: block; margin-top: 1ex; }
|
|
.fieldWithLabel .field { display: block; }
|
|
.fieldWithLabel .hint { }
|
|
.fieldWithLabel .fieldInput { vertical-align: top; }
|
|
.fieldSet { float: left; margin: 1ex; background-color: #f7f7ff; }
|
|
.endSets { clear: both; }
|
|
|
|
#screen #left div { }
|
|
.itemlist { border: 1px #bbb solid; list-style: none; padding: 0px; margin: 0px; line-height: 1.3; margin-bottom: 2ex; }
|
|
.itemlist li { cursor: pointer; padding: 0.5ex 1ex 0.5ex 2ex; }
|
|
.itemlist li:nth-child(odd) { background-color: #eee; border-top: 1px #ddd solid; border-bottom: 1px #ddd solid; }
|
|
.itemlist li:hover { background-color: #d7d7ff; }
|
|
.importexport-header { font-weight: bold; padding-top: 1ex; }
|
|
#dialog-importexport #value { font-family: monospace; font-size: 7pt; }
|
|
.fieldWithLabel table { border-collapse: collapse; margin-bottom: 1ex; }
|
|
.fieldWithLabel table th { border: 1px #ccc solid; padding: 0.5ex; }
|
|
.fieldWithLabel table td { border: 1px #ccc solid; padding: 0.5ex; cursor: pointer; }
|
|
.fieldWithLabel table tbody tr:nth-child(even) { background-color: #eee }
|
|
.fieldWithLabel table tbody tr:hover { background-color: #d7d7ff; }
|
|
#dialogueTreeContainer { }
|
|
#dialogueTree { width: 400px; }
|
|
#dialogueData { }
|
|
input[readonly] { color: #888; }
|
|
.imageButton { padding: 5px; }
|
|
.importexport-description { padding: 15px; text-align: right; }
|
|
.tools-buttons { padding-bottom: 10px; }
|
|
|
|
.validateStep { border: 1px #d7d7ff solid; background-color: white; padding: 1em; margin: 2em; float: left; }
|
|
.validateStep h1 { font-size: 1.1em; }
|
|
.validateStep h1 .number { font-size: 1.3em; font-weight: bold; text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 1px; }
|
|
.validateStep .buttons { padding-top: 10px; }
|
|
#validateResultContent table { border-collapse: collapse; margin-bottom: 1ex; }
|
|
#validateResultContent table th,td { border: 1px #ccc solid; text-align: left; }
|
|
#validateResultContent table tbody tr:nth-child(even) { background-color: #eee }
|
|
#validateResultContent table .ok { background-color: green; }
|
|
#validateResultContent table .red { background-color: red; }
|
|
#validateResultContent table .yellow { background-color: yellow; }
|
|
#showValidationWarnings { cursor: pointer; }
|
|
#showValidationWarnings:hover { background-color: #d7d7ff; }
|