2011-11-02 21:00:55 +00:00
|
|
|
.es-surfaceView {
|
|
|
|
overflow: hidden;
|
2011-11-21 22:32:22 +00:00
|
|
|
font-size: 1em; /* to look more like MediaWiki use: 0.8em */;
|
2011-11-28 23:53:34 +00:00
|
|
|
margin-left: -1em;
|
|
|
|
margin-right: -1em;
|
2011-11-02 21:00:55 +00:00
|
|
|
}
|
|
|
|
|
2011-11-05 01:06:59 +00:00
|
|
|
.es-surfaceView-textarea {
|
2011-11-02 21:00:55 +00:00
|
|
|
position: absolute;
|
|
|
|
z-index: -1;
|
|
|
|
opacity: 0;
|
|
|
|
color: white;
|
|
|
|
background-color: white;
|
|
|
|
border: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
width: 1px;
|
|
|
|
}
|
|
|
|
|
2011-11-05 01:06:59 +00:00
|
|
|
.es-surfaceView-textarea:focus {
|
2011-11-02 21:00:55 +00:00
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-surfaceView-cursor {
|
|
|
|
position: absolute;
|
|
|
|
background-color: black;
|
|
|
|
width: 1px;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-documentView {
|
|
|
|
cursor: text;
|
|
|
|
margin-top: 1em;
|
|
|
|
overflow: hidden;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
}
|
|
|
|
|
2011-11-29 23:29:02 +00:00
|
|
|
.es-contextView {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-contextView-icon {
|
|
|
|
position: absolute;
|
|
|
|
background-position: top left;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
width: 31px;
|
|
|
|
height: 31px;
|
|
|
|
display: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-contextView-position-above .es-contextView-icon {
|
|
|
|
background-image: url(images/context-icon-up.png);
|
|
|
|
top: -24px;
|
|
|
|
left: -15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-contextView-position-below .es-contextView-icon {
|
|
|
|
background-image: url(images/context-icon-down.png);
|
|
|
|
top: -7px;
|
|
|
|
left: -16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-contextView-position-above .es-contextView-icon:hover {
|
|
|
|
background-image: url(images/context-icon-up-hover.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-contextView-position-below .es-contextView-icon:hover {
|
|
|
|
background-image: url(images/context-icon-down-hover.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-contextView-menu {
|
2011-11-29 23:48:11 +00:00
|
|
|
display: none;
|
2011-11-29 23:29:02 +00:00
|
|
|
position: absolute;
|
2011-11-29 23:48:11 +00:00
|
|
|
border: solid 1px #cccccc;
|
|
|
|
-webkit-border-radius: 0.25em;
|
|
|
|
-moz-border-radius: 0.25em;
|
|
|
|
-o-border-radius: 0.25em;
|
|
|
|
border-radius: 0.25em;
|
|
|
|
background-color: white;
|
|
|
|
-webkit-box-shadow: 0 0.25em 1em 0 rgba(0,0,0,0.25);
|
|
|
|
-moz-box-shadow: 0 0.25em 1em 0 rgba(0,0,0,0.25);
|
|
|
|
box-shadow: 0 0.25em 1em 0 rgba(0,0,0,0.25);
|
|
|
|
padding: 0.33em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-contextView-menuItem {
|
|
|
|
padding: 0.33em 1em;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-contextView-menuItem:hover {
|
|
|
|
background-color: #b3d6f6;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-contextView-position-above .es-contextView-menu {
|
|
|
|
bottom: 7px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-contextView-position-below .es-contextView-menu {
|
2011-11-29 23:29:02 +00:00
|
|
|
top: 8px;
|
|
|
|
}
|
|
|
|
|
2011-11-02 21:00:55 +00:00
|
|
|
.es-contentView {
|
|
|
|
position: relative;
|
2011-11-28 20:57:01 +00:00
|
|
|
z-index: 1;
|
2011-11-02 21:00:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.es-headingView,
|
|
|
|
.es-tableView,
|
|
|
|
.es-listView,
|
2011-11-07 23:46:30 +00:00
|
|
|
.es-preView,
|
2011-11-02 21:00:55 +00:00
|
|
|
.es-paragraphView {
|
|
|
|
margin: 1em;
|
|
|
|
margin-top: 0;
|
|
|
|
position: relative;
|
|
|
|
min-height: 1.5em;
|
|
|
|
}
|
|
|
|
|
2011-11-07 21:30:13 +00:00
|
|
|
.es-listItemView > .es-paragraphView {
|
2011-11-07 22:33:40 +00:00
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
.es-listItemView > .es-viewBranchNode-firstChild {
|
2011-11-07 21:30:13 +00:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2011-11-07 23:46:30 +00:00
|
|
|
.es-preView {
|
|
|
|
padding: 1em;
|
|
|
|
border: 1px dashed #2F6FAB;
|
|
|
|
}
|
|
|
|
.es-preView > * {
|
|
|
|
font-family: monospace,"Courier New";
|
|
|
|
}
|
|
|
|
|
2011-11-02 21:00:55 +00:00
|
|
|
.es-headingView-level1,
|
|
|
|
.es-headingView-level2 {
|
|
|
|
border-bottom: 1px solid #AAA;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-headingView-level1 > * {
|
2011-11-28 23:53:34 +00:00
|
|
|
font-size: 188%;
|
2011-11-02 21:00:55 +00:00
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-headingView-level2 > * {
|
2011-11-28 23:53:34 +00:00
|
|
|
font-size: 150%;
|
2011-11-02 21:00:55 +00:00
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-headingView-level3 > * {
|
2011-11-28 23:53:34 +00:00
|
|
|
font-size: 132%;
|
2011-11-02 21:00:55 +00:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-headingView-level4 > * {
|
2011-11-28 23:53:34 +00:00
|
|
|
font-size: 116%;
|
2011-11-02 21:00:55 +00:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-headingView-level5 > * {
|
2011-11-28 23:53:34 +00:00
|
|
|
font-size: 100%;
|
2011-11-02 21:00:55 +00:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-headingView-level6 > * {
|
2011-11-28 23:53:34 +00:00
|
|
|
font-size: 80%;
|
2011-11-02 21:00:55 +00:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-listItemView {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-listItemView-bullet {
|
2011-11-04 23:09:10 +00:00
|
|
|
padding-left: 1.2em;
|
2011-11-02 21:00:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.es-listItemView-number {
|
2011-11-04 23:09:10 +00:00
|
|
|
padding-left: 3.2em;
|
2011-11-02 21:00:55 +00:00
|
|
|
}
|
|
|
|
|
2011-11-04 23:09:10 +00:00
|
|
|
.es-listItemView-icon {
|
2011-11-02 21:00:55 +00:00
|
|
|
position: absolute;
|
|
|
|
right: 100%;
|
|
|
|
height: 1.5em;
|
|
|
|
line-height: 1.5em;
|
|
|
|
}
|
|
|
|
|
2011-11-04 23:09:10 +00:00
|
|
|
.es-listItemView-bullet .es-listItemView-icon {
|
|
|
|
background-image: url(images/bullet.png);
|
|
|
|
background-position: left 0.6em;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
width: 5px;
|
|
|
|
margin-right: -0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-listItemView-number .es-listItemView-icon {
|
|
|
|
margin-right: -2.8em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-listItemView-term {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-listItemView-definition .es-contentView {
|
|
|
|
margin-left: 2em;
|
|
|
|
}
|
|
|
|
|
2011-11-02 21:00:55 +00:00
|
|
|
.es-listItemView-level0 {
|
2011-11-04 23:09:10 +00:00
|
|
|
margin-left: 0;
|
2011-11-02 21:00:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.es-listItemView-level1 {
|
2011-11-04 23:09:10 +00:00
|
|
|
margin-left: 2em;
|
2011-11-02 21:00:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.es-listItemView-level2 {
|
2011-11-04 23:09:10 +00:00
|
|
|
margin-left: 4em;
|
2011-11-02 21:00:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.es-listItemView-level3 {
|
2011-11-04 23:09:10 +00:00
|
|
|
margin-left: 6em;
|
2011-11-02 21:00:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.es-listItemView-level4 {
|
2011-11-04 23:09:10 +00:00
|
|
|
margin-left: 8em;
|
2011-11-02 21:00:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.es-listItemView-level5 {
|
2011-11-04 23:09:10 +00:00
|
|
|
margin-left: 10em;
|
2011-11-02 21:00:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.es-listItemView-level6 {
|
2011-11-04 23:09:10 +00:00
|
|
|
margin-left: 12em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-listItemView-level1.es-listItemView-number {
|
|
|
|
margin-left: 4em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-listItemView-level2.es-listItemView-number {
|
|
|
|
margin-left: 8em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-listItemView-level3.es-listItemView-number {
|
|
|
|
margin-left: 12em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-listItemView-level4.es-listItemView-number {
|
|
|
|
margin-left: 16em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-listItemView-level5.es-listItemView-number {
|
|
|
|
margin-left: 18em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-listItemView-level6.es-listItemView-number {
|
|
|
|
margin-left: 22em;
|
2011-11-02 21:00:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.es-contentView-line,
|
|
|
|
.es-contentView-ruler {
|
|
|
|
line-height: 1.5em;
|
|
|
|
cursor: text;
|
|
|
|
white-space: nowrap;
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-contentView-ruler {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
display: inline-block;
|
|
|
|
z-index: -1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-contentView-line.empty {
|
|
|
|
display: block;
|
|
|
|
width: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-contentView-whitespace {
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-contentView-range {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
2011-11-29 23:29:02 +00:00
|
|
|
background-color: #b3d6f6;
|
2011-11-02 21:00:55 +00:00
|
|
|
cursor: text;
|
|
|
|
z-index: -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-contentView-format-object {
|
|
|
|
background-color: rgba(0,0,0,0.05);
|
|
|
|
border-radius: 0.25em;
|
|
|
|
margin: 1px 0 1px 1px;
|
|
|
|
padding: 0.25em 0;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-contentView-format-object * {
|
|
|
|
cursor: default !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-contentView-format-object a:link,
|
|
|
|
.es-contentView-format-object a:visited,
|
|
|
|
.es-contentView-format-object a:active {
|
2011-11-21 22:32:22 +00:00
|
|
|
color: #0645AD;
|
|
|
|
text-decoration: none;
|
2011-11-02 21:00:55 +00:00
|
|
|
}
|
|
|
|
|
2011-11-03 18:15:24 +00:00
|
|
|
.es-contentView-format-textStyle-italic,
|
2011-11-07 19:28:47 +00:00
|
|
|
.es-contentView-format-textStyle-emphasize {
|
2011-11-02 21:00:55 +00:00
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
2011-11-03 18:15:24 +00:00
|
|
|
.es-contentView-format-textStyle-bold,
|
|
|
|
.es-contentView-format-textStyle-strong {
|
2011-11-02 21:00:55 +00:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-contentView-format-link {
|
2011-11-21 22:32:22 +00:00
|
|
|
color: #0645AD;
|
2011-11-02 21:00:55 +00:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2011-11-03 18:15:24 +00:00
|
|
|
.es-contentView-format-textStyle-big {
|
2011-11-02 21:00:55 +00:00
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
|
|
|
|
2011-11-03 18:15:24 +00:00
|
|
|
.es-contentView-format-textStyle-small,
|
|
|
|
.es-contentView-format-textStyle-subScript,
|
|
|
|
.es-contentView-format-textStyle-superScript {
|
2011-11-02 21:00:55 +00:00
|
|
|
font-size: .8em;
|
|
|
|
}
|
|
|
|
|
2011-11-03 18:15:24 +00:00
|
|
|
.es-contentView-format-textStyle-subScript {
|
2011-11-02 21:00:55 +00:00
|
|
|
vertical-align: sub;
|
|
|
|
}
|
|
|
|
|
2011-11-03 18:15:24 +00:00
|
|
|
.es-contentView-format-textStyle-superScript {
|
2011-11-02 21:00:55 +00:00
|
|
|
vertical-align: super;
|
|
|
|
}
|