diff --git a/src/lib/data/html/restore.html b/src/lib/data/html/restore.html index f88cc4baa..c9bffa483 100644 --- a/src/lib/data/html/restore.html +++ b/src/lib/data/html/restore.html @@ -7,17 +7,187 @@ html {background: #dddddd;font-family: sans-serif;color: #525c66;} html * {font-size: 100%;line-height: 1.6;} #box {max-width:650px;min-width:400px;overflow:auto;margin: 25px auto 10px auto;padding: 10px 40px;border-width: 20px;text-align: %LEFT_STR%;-webkit-border-image: url(%BOX-BORDER%) 25;direction: %DIRECTION%;} hr {color: lightgray;width: 100%;} -img {float: %LEFT_STR%;margin-%LEFT_STR%: -20px;margin-top: 15px;} +img.warning {float: %LEFT_STR%;margin-%LEFT_STR%: -20px;margin-top: 15px;} h1 {font-size: 150%;font-weight: bold;border-bottom: 1px solid #f4f4f4;margin-%LEFT_STR%: 48px;margin-%RIGHT_STR%: 50px;} h2 {font-size: 100%;font-weight: normal;border-bottom: 1px solid #f4f4f4;margin-%LEFT_STR%: 48px;padding: 5px 0px 10px 2px;margin-%RIGHT_STR%: 50px;} ul {font-size: 90%;padding-%LEFT_STR%: 48px;margin: 20px 0;max-width:600px;} li {padding: 5px;} -#buttons {margin: 20px 50px;} -#restore-session-button {font-weight: bold;} + +#recovery-widget +{ + margin: 20px 50px; +} + +#recovery-widget .button +{ + margin-top: 10px; + height: 25px; +} + +#restore-session-button +{ + font-weight: bold; + margin-left: 5px; +} + +#listview +{ + width: 500px; + border-spacing: 0; + border: 1px solid #c0c2c4; + cursor: default; + -webkit-user-select: none; +} + +#listview tbody, +#listview thead +{ + display: block; +} + +#listview thead +{ + height: 30px; + background: #eff0f1; + padding-left: 5px; +} + +#listview th +{ + line-height: 30px; + font-weight: normal; + vertical-align: middle; +} + +#listview tbody +{ + height: 200px; + overflow-y: auto; + overflow-x: hidden; +} + +#listview tbody +{ + border-top: 1px solid #c0c2c4; +} + +#listview tbody td +{ + height: 26px; + width: 480px; + max-width: 480px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +#listview tbody tr:hover +{ + background-color: #baddff; +} + +#listview tbody tr.selected +{ + color: white; + background-color: #1e90ff; +} + +#listview img +{ + width: 16px; + height: 16px; + margin-right: 7px; +} + +#listview input +{ + margin-top: 6px; + margin-left: 8px; + margin-right: 10px; +} + +#listview .tab input +{ + margin-left: 15px; +} + +#listview .window +{ + font-weight: bold; +} + +#listview span +{ + vertical-align: top; +} +