web-apps/apps/presentationeditor/main/resources/help/it/editor.css

220 lines
3.4 KiB
CSS
Raw Normal View History

2022-04-18 05:23:41 +00:00
@import "../scroll.css";
body
2018-03-21 12:26:39 +00:00
{
2021-05-18 19:47:09 +00:00
font-family: Arial, Helvetica, "Helvetica Neue", sans-serif;
2018-03-21 12:26:39 +00:00
font-size: 12px;
color: #444;
background: #fff;
}
img
{
border: none;
vertical-align: middle;
2021-01-14 11:37:06 +00:00
max-width: 100%;
2018-03-21 12:26:39 +00:00
}
img.floatleft
{
float: left;
margin-right: 30px;
margin-bottom: 10px;
}
li
{
line-height: 2em;
}
.mainpart
{
margin: 0;
padding: 10px 20px;
}
.mainpart h1
{
font-size: 16px;
font-weight: bold;
}
table,
tr,
td,
th
{
border-left: 0;
border-right: 0;
border-bottom: solid 1px #E4E4E4;
border-collapse: collapse;
padding: 8px;
text-align: left;
}
table
{
margin: 20px 0;
width: 100%;
}
th
{
font-size: 14px;
font-weight: bold;
padding-top: 20px;
}
td.function
{
width: 35%;
}
td.shortfunction
{
width: 20%;
}
td.combination
{
width: 15%;
}
td.description
{
width: 50%;
}
td.longdescription
{
width: 80%;
}
.note
{
2022-03-27 23:59:01 +00:00
background: #F4F4F4;
2018-03-21 12:26:39 +00:00
font-size: 11px;
padding: 10px 20px 10px 37px;
width: 90%;
margin: 10px 0;
line-height: 1em;
min-height: 14px;
}
2022-03-27 23:59:01 +00:00
.note:before {
width: 18px;
height: 18px;
background: #83888D;
font-weight: 900;
content: "!";
text-align: center;
font-size: 16px;
border-radius: 50%;
color: white;
display: inline-block;
line-height: 18px;
float: left;
position: relative;
left: -20px;
top: -3px;
}
2018-03-21 12:26:39 +00:00
hr
{
height: 1px;
width: 90%;
text-align: left;
margin: 10px 0 15px;
color: #E4E4E4;
background-color: #E4E4E4;
border: 0;
clear: both;
}
a
{
color: #7496DD;
text-decoration: underline;
}
a:hover
{
text-decoration: none;
}
a.sup_link {
text-decoration: none;
}
.search-field {
display: block;
float: right;
}
.search-field input {
width: 250px;
height: 25px;
box-sizing: border-box;
padding: 4px 10px 4px 25px;
border: 1px solid #e1e1e1;
border-radius: 6px;
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAAXNSR0IArs4c6QAAAQVJREFUGBl1j71KxUAQhe8uJkZcC/ERfADBRsheCSkFwcLKxkbuM1jaa2+l1pZ6FW2EJJgUdqYOdinsAuIfRDZ+E24qceAw55w5O7urRlRRFKtt2x5DQ/AGrn3fPwrD8Avel5qFnlEOTMFK13Vb9CcwjuP4hz6aY9MJ3Xmet26tfREzy7ID59yZ1nofeSGeBhZcDSExoyg6V0o1bN4ULSXBd7AsYqgkSQL4AvgcPM2pG8R2mqZ7YlZVNc+2U/yAq+XNfak8z5d45yNqjcAr3RAyMkXfwXf50LcSQ7bUdT2Bjhl+0G8JHNI30A/GmJ0+iPGnZjfdM7CEp/8G5WRZlotN01xCg18HsWi9HzrHEgAAAABJRU5ErkJggg==') center left 9px no-repeat;
}
.search-field input:focus {
outline:0 !important;
}
.subtitle {
font-size: 0.9em;
font-style: italic;
}
#search-results a {
2021-05-18 19:47:09 +00:00
font-family: Arial, Helvetica, "Helvetica Neue", sans-serif;
2018-03-21 12:26:39 +00:00
font-size: 1em;
font-weight: bold;
color: #444;
2021-01-14 11:37:06 +00:00
}
kbd {
display: inline-block;
padding: 0.2em 0.3em;
border-radius: .2em;
line-height: 1em;
background-color: #f2f2f2;
font-family: monospace;
white-space: nowrap;
box-shadow: 0 1px 3px rgba(85,85,85,.35);
margin: 0.2em 0.1em;
color: #000;
}
.shortcut_variants {
margin: 20px 0 -20px;
padding: 0;
}
.shortcut_toggle {
display: inline-block;
margin: 0;
padding: 1px 10px;
list-style-type: none;
cursor: pointer;
font-size: 11px;
line-height: 18px;
white-space: nowrap
}
.shortcut_toggle.enabled {
color: #fff;
background-color: #7D858C;
border: 1px solid #7D858C;
}
.shortcut_toggle.disabled {
color: #444;
background-color: #fff;
border: 1px solid #CFCFCF;
}
.shortcut_toggle.disabled:hover {
background-color: #D8DADC;
}
.left_option {
border-radius: 2px 0 0 2px;
float: left;
}
.right_option {
border-radius: 0 2px 2px 0;
2016-03-11 00:48:53 +00:00
}