mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-23 00:46:16 -04:00
A lot small changes that results in a timeslider that shows the latest text
This commit is contained in:
parent
182477af93
commit
44aa476ec0
36 changed files with 6944 additions and 52 deletions
251
static/css/broadcast.css
Normal file
251
static/css/broadcast.css
Normal file
|
@ -0,0 +1,251 @@
|
|||
#editorcontainerbox {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
#padcontent {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
#timeslider-wrapper {
|
||||
position: relative;
|
||||
left: 0px;
|
||||
right: 0px;
|
||||
top: 0px;
|
||||
}
|
||||
|
||||
#timeslider-left {
|
||||
position: absolute;
|
||||
left:-2px;
|
||||
background-image: url(/static/img/timeslider_left.png);
|
||||
width: 134px;
|
||||
height: 63px;
|
||||
}
|
||||
|
||||
#timeslider-right {
|
||||
position: absolute;
|
||||
top:0px;
|
||||
right:-2px;
|
||||
background-image: url(/static/img/timeslider_right.png);
|
||||
width: 155px;
|
||||
height: 63px;
|
||||
}
|
||||
|
||||
|
||||
#timeslider {
|
||||
margin:7px;
|
||||
margin-bottom: 0px;
|
||||
height: 63px;
|
||||
margin-left: 9px;
|
||||
margin-right: 9px;
|
||||
background-image: url(/static/img/timeslider_background.png);
|
||||
}
|
||||
|
||||
div#timeslider #timeslider-slider {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 1px;
|
||||
height: 61px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
div#ui-slider-handle {
|
||||
width: 13px;
|
||||
height: 61px;
|
||||
background-image: url(/static/img/crushed_current_location.png);
|
||||
cursor: pointer;
|
||||
-moz-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
user-select: none;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
* html div#ui-slider-handle { /* IE 6/7 */
|
||||
background-image: url(/static/img/current_location.gif);
|
||||
}
|
||||
|
||||
div#ui-slider-bar {
|
||||
position: relative;
|
||||
margin-right: 148px;
|
||||
height: 35px;
|
||||
margin-left: 5px;
|
||||
top: 20px;
|
||||
cursor: pointer;
|
||||
-moz-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
user-select: none;
|
||||
|
||||
}
|
||||
|
||||
div#timeslider div#playpause_button {
|
||||
background-image: url(/static/img/crushed_button_undepressed.png);
|
||||
width: 47px;
|
||||
height: 47px;
|
||||
position: absolute;
|
||||
right: 77px;
|
||||
top: 9px;
|
||||
}
|
||||
|
||||
div#timeslider div#playpause_button div#playpause_button_icon {
|
||||
background-image: url(/static/img/play.png);
|
||||
width: 47px;
|
||||
height: 47px;
|
||||
position: absolute;
|
||||
top :0px;
|
||||
left:0px;
|
||||
}
|
||||
* html div#timeslider div#playpause_button div#playpause_button_icon {
|
||||
background-image: url(/static/img/play.gif); /* IE 6/7 */
|
||||
}
|
||||
|
||||
div#timeslider div#playpause_button div.pause#playpause_button_icon {
|
||||
background-image: url(/static/img/pause.png);
|
||||
}
|
||||
* html div#timeslider div#playpause_button div.pause#playpause_button_icon {
|
||||
background-image: url(/static/img/pause.gif); /* IE 6/7 */
|
||||
}
|
||||
|
||||
div #timeslider div#steppers div#leftstar {
|
||||
position: absolute;
|
||||
right: 34px;
|
||||
top: 8px;
|
||||
width:30px;
|
||||
height:21px;
|
||||
background: url(/static/img/stepper_buttons.png) 0px 44px;
|
||||
overflow:hidden;
|
||||
}
|
||||
|
||||
div #timeslider div#steppers div#rightstar {
|
||||
position: absolute;
|
||||
right: 5px;
|
||||
top: 8px;
|
||||
width:29px;
|
||||
height:21px;
|
||||
background: url(/static/img/stepper_buttons.png) 29px 44px;
|
||||
overflow:hidden;
|
||||
}
|
||||
|
||||
div #timeslider div#steppers div#leftstep {
|
||||
position: absolute;
|
||||
right: 34px;
|
||||
top: 33px;
|
||||
width:30px;
|
||||
height:21px;
|
||||
background: url(/static/img/stepper_buttons.png) 0px 22px;
|
||||
overflow:hidden;
|
||||
}
|
||||
|
||||
div #timeslider div#steppers div#rightstep {
|
||||
position: absolute;
|
||||
right: 5px;
|
||||
top: 33px;
|
||||
width:29px;
|
||||
height:21px;
|
||||
background: url(/static/img/stepper_buttons.png) 29px 22px;
|
||||
overflow:hidden;
|
||||
}
|
||||
|
||||
#timeslider div.star {
|
||||
position: absolute;
|
||||
top: 40px;
|
||||
background-image: url(/static/img/star.png);
|
||||
width: 15px;
|
||||
height: 16px;
|
||||
cursor: pointer;
|
||||
}
|
||||
* html #timeslider div.star {
|
||||
background-image: url(/static/img/star.gif); /* IE 6/7 */
|
||||
}
|
||||
|
||||
#timeslider div#timer {
|
||||
position: absolute;
|
||||
font-family: Arial, sans-serif;
|
||||
left: 7px;
|
||||
top: 9px;
|
||||
width: 122px;
|
||||
text-align: center;
|
||||
color: white;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#rightbars {
|
||||
margin-left: 730px;
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
margin-right: 7px;
|
||||
position: absolute;
|
||||
top:27px;
|
||||
}
|
||||
|
||||
#rightbar {
|
||||
width: 143px;
|
||||
background-color: white;
|
||||
border: 1px solid rgb(194, 194, 194);
|
||||
padding: 16px;
|
||||
padding-top: 13px;
|
||||
font-size: 1.20em;
|
||||
line-height: 1.8em;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
|
||||
#rightbar h2 {
|
||||
font-weight: 700;
|
||||
font-size: 1.2em;
|
||||
padding-top: 20px;
|
||||
padding-bottom: 4px;
|
||||
}
|
||||
|
||||
#rightbar a {
|
||||
color: rgb(50, 132, 213);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#rightbars h2 {
|
||||
font-weight: 700;
|
||||
font-size: 1.2em;
|
||||
padding-top: 20px;
|
||||
padding-bottom: 4px;
|
||||
}
|
||||
|
||||
#rightbar img {
|
||||
padding-left: 4px;
|
||||
padding-right: 8px;
|
||||
vertical-align: text-bottom;
|
||||
}
|
||||
#rightbar a {
|
||||
color: rgb(50, 132, 213);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#legend {
|
||||
width: 143px;
|
||||
background-color: white;
|
||||
border: 1px solid rgb(194, 194, 194);
|
||||
padding: 16px;
|
||||
padding-top: 0px;
|
||||
font-size: 1.20em;
|
||||
line-height: 1.8em;
|
||||
vertical-align: top;
|
||||
margin-top: 10px;
|
||||
}
|
||||
#legend h2 {
|
||||
padding-top: 10px;
|
||||
}
|
||||
|
||||
#authorstable {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
#authorstable div.swatch {
|
||||
width:15px;
|
||||
height:15px;
|
||||
margin: 5px;
|
||||
margin-top:3px;
|
||||
margin-right: 14px;
|
||||
border: rgb(149, 149, 149) 1px solid;
|
||||
}
|
1139
static/css/pad2_ejs.css
Normal file
1139
static/css/pad2_ejs.css
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue