Merge pull request #3433 from emanuelschuetze/layoutIssues

Fixed minor layout issues on projector and pdf.
This commit is contained in:
Emanuel Schütze 2017-10-05 13:29:38 +02:00 committed by GitHub
commit 18d138ebf1
4 changed files with 29 additions and 58 deletions

View File

@ -740,8 +740,6 @@ img {
color: green;
text-decoration: underline;
}
.motion-text-diff p {
}
.motion-text-diff.line-numbers-outside .insert .os-line-number {
display: none;
}

View File

@ -197,7 +197,6 @@ h3 {
margin-bottom: 10px
}
#title {
width: calc(100% - 230px);
border-bottom: 5px solid #d3d3d3;
margin-bottom: 40px;
}
@ -209,6 +208,9 @@ h3 {
margin-top: 10px;
margin-bottom: 5px;
}
#motioncontent {
width: calc(100% - 260px);
}
#sidebox {
width: 260px;
float: right;
@ -217,6 +219,8 @@ h3 {
background: #d3d3d3;
border-radius: 7px 0 0 7px;
padding: 3px 7px 10px 19px;
position: absolute;
z-index: 5;
}
#sidebox h3 {
margin-top: 10px;
@ -281,7 +285,7 @@ hr {
margin: 0 0 10px 10px;
top: 0px;
right: 0px;
padding: 26px 45px 3px 19px;
padding: 26px 45px 7px 19px;
min-height: 72px;
font-size: 3.7em;
font-weight: bold;
@ -467,14 +471,20 @@ tr.elected td {
.motion-text.line-numbers-outside .os-line-number {
display: inline-block;
font-size: 0;
line-height: 0;
width: 22px;
height: 22px;
position: absolute;
left: -25px;
}
.motion-text.line-numbers-outside .os-line-number:after {
content: attr(data-line-number);
position: absolute;
left: -25px;
top: 17px;
vertical-align: top;
color: gray;
font-size: 13px;
font-size: 14px;
font-weight: normal;
}
@ -495,7 +505,6 @@ tr.elected td {
margin-left: 0;
}
.motion-text.line-numbers-none .os-line-break {
display: none;
}
@ -504,66 +513,30 @@ tr.elected td {
}
/** Diff view */
.change-recommendation-overview {
background-color: #eee;
border: solid 1px #ddd;
border-radius: 3px;
margin-bottom: 5px;
margin-top: -15px;
padding-top: 5px;
p.os-split-after {
margin-bottom: 0;
}
.change-recommendation-overview {
margin-bottom: 50px;
padding: 10px;
}
.change-recommendation-overview h2 {
p.os-split-before {
margin-top: 0;
}
.change-recommendation-overview ul {
list-style: none;
display: table;
ul.os-split-after, ol.os-split-after {
margin-bottom: 0;
}
.change-recommendation-overview li {
display: table-row;
cursor: pointer;
}
.change-recommendation-overview li:hover {
text-decoration: underline;
}
.change-recommendation-overview li > * {
display: table-cell;
padding: 4px;
}
.change-recommendation-overview .status {
color: gray;
font-style: italic;
}
.change-recommendation-overview .status > *:before {
content: '(';
}
.change-recommendation-overview .status > *:after {
content: ')';
}
.change-recommendation-overview .no-changes {
font-style: italic;
color: grey;
.motion-text-holder li.os-split-before {
list-style-type: none;
}
.diff-box {
margin-left: 25px;
padding-top: 0;
}
.motion-text-with-diffs li.os-split-before {
list-style-type: none;
}
.motion-text-with-diffs .original-text {
min-height: 30px; // Spacer between .diff-box, in case .original-text is empty
}
.motion-text-with-diffs .original-text ul:last-child {
.motion-text-with-diffs .original-text ul:last-child, .motion-text-with-diffs .original-text ol:last-child {
padding-bottom: 16px;
}
.motion-text-with-diffs .original-text ul.os-split-after:last-child {
.motion-text-with-diffs .original-text ul.os-split-after:last-child, .motion-text-with-diffs .original-text ol.os-split-after:last-child {
padding-bottom: 0;
}
ol.os-split-after, ul.os-split-after {
@ -573,9 +546,6 @@ ol.os-split-after, ul.os-split-after {
p.os-split-after {
margin-bottom: 0;
}
.motion-text-with-diffs.line-numbers-inline .diff-box, .motion-text-with-diffs.line-numbers-none .diff-box {
margin-right: -220px;
}
.diff-box:hover {
background-color: #f0f0f0;
}

View File

@ -678,7 +678,8 @@ angular.module('OpenSlidesApp.core.pdf', [])
columns: [
HeaderOutsideLineNumber,
HeaderOutsideLineNumberText
]
],
margin: [0, 11, 0, 0]
};
alreadyConverted.push(HeaderOutsideLineNumberColumns);
} else {
@ -907,7 +908,7 @@ angular.module('OpenSlidesApp.core.pdf', [])
});
listCol.columns.push(list);
if (!hasClass(element, 'os-split-before')) {
listCol.margin = [0, 10, 0, 0];
listCol.margin = [0, 5, 0, 0];
}
alreadyConverted.push(listCol);
} else {

View File

@ -66,6 +66,7 @@
</div>
</div>
<div id="motioncontent">
<!-- Title -->
<div id="title">
<h1>{{ motion.agenda_item.getTitle() || motion.getTitle() }}</h1>
@ -124,3 +125,4 @@
<div ng-bind-html="motion.getReason() | trusted"></div>
</div>
</div>
</div>