diff options
author | johnyma22 <john@mclear.co.uk> | 2012-04-05 18:04:17 +0100 |
---|---|---|
committer | johnyma22 <john@mclear.co.uk> | 2012-04-05 18:04:17 +0100 |
commit | 66fdacf9cf31343721dd8fb38a4584e11ea76e6e (patch) | |
tree | c8b4bb7bb208249c1704f19f32246a8c3e2a6be1 /src/static | |
parent | 28aeb24f86724040281d8a636b1211c7dc5724b4 (diff) | |
download | etherpad-lite-66fdacf9cf31343721dd8fb38a4584e11ea76e6e.zip |
move css out of html
Diffstat (limited to 'src/static')
-rw-r--r-- | src/static/css/admin.css | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/src/static/css/admin.css b/src/static/css/admin.css new file mode 100644 index 00000000..80089c4c --- /dev/null +++ b/src/static/css/admin.css @@ -0,0 +1,49 @@ +table { + border-collapse: collapse; +} +td, th { + border: 1px solid black; + padding-left: 10px; + padding-right: 10px; + padding-top: 2px; + padding-bottom: 2px; +} +.template { + display: none; +} +.dialog { + display: none; + position: absolute; + left: 50%; + top: 50%; + width: 700px; + height: 500px; + margin-left: -350px; + margin-top: -250px; + border: 3px solid #999999; + background: #eeeeee; +} +.dialog .title { + margin: 0; + padding: 2px; + border-bottom: 3px solid #999999; + font-size: 24px; + line-height: 24px; + height: 24px; + overflow: hidden; +} +.dialog .title .close { + float: right; +} +.dialog .history { + background: #222222; + color: #eeeeee; + position: absolute; + top: 41px; + bottom: 10px; + left: 10px; + right: 10px; + padding: 2px; + overflow: auto; +} + |