summaryrefslogtreecommitdiff
path: root/help3xsl
diff options
context:
space:
mode:
authorAdolfo Jayme Barrientos <fitojb@ubuntu.com>2021-03-22 15:46:49 -0600
committerAdolfo Jayme Barrientos <fitojb@ubuntu.com>2021-03-22 15:46:49 -0600
commite694812962ffc63f54e130446a0cac49f048bca0 (patch)
tree857a4423c2c9a2a83f1cdbe3140a4a7f715c7b4a /help3xsl
parenteba8ef3bc9d037916f8bac8ef62d582768053521 (diff)
CSS: Initial teeny-tiny changes towards tdf#139926
Since I keep procrastinating on the Online Help redesign, let’s do it incrementally. Change-Id: I2e7ebc1d3d9df8f6b7425dcae50464d463d7f0c3
Diffstat (limited to 'help3xsl')
-rw-r--r--help3xsl/default.css28
1 files changed, 14 insertions, 14 deletions
diff --git a/help3xsl/default.css b/help3xsl/default.css
index 197052902b..ce1dd77f8b 100644
--- a/help3xsl/default.css
+++ b/help3xsl/default.css
@@ -155,21 +155,21 @@ pre,
.warning {
display:flex;
align-items: center;
- border-radius: 0 4px 4px 0;
- box-shadow: 0 2px 2px -2px rgba(0,0,0,0.2);
+ border-radius: 2px;
+ box-shadow: 0 2px 5px -3px rgb(0 0 0 / 10%);
padding: 0.2em;
margin-top: 15px;
}
.note {
- border-left: 3px solid #309048;
+ border-left: 2px solid #309048;
background-color: #d9f1dd;
}
.tip {
- border-left: 3px solid #0063b1;
+ border-left: 2px solid #0063b1;
background-color: #cde5f7;
}
.warning {
- border-left: 3px solid #ed8733;
+ border-left: 2px solid #ed8733;
background-color: #f6f1d2;
}
.noteicon, .notetext {
@@ -228,7 +228,7 @@ h6 {
p,
ol,
td {
- font-size: 1.17rem;
+ font-size: 1.15rem;
margin: 2px 0 2px 0;
}
h1 {
@@ -256,10 +256,10 @@ h6 {
}
.howtoget {
background: #EBE7E9;
- border-left: 3px solid #4E4B55;
- border-radius: 0 4px 4px 0;
- box-shadow: 0 2px 2px -2px rgba(0,0,0,0.2);
- padding: 0.3em;
+ border-left: 2px solid #4E4B55;
+ border-radius: 2px;
+ box-shadow: 0 2px 5px -3px rgb(0 0 0 / 10%);
+ padding: 0.2em;
display: flex;
flex-direction: column;
}
@@ -450,7 +450,7 @@ aside input[type=checkbox]:checked ~ .contents-treeview {
padding-left: 15px;
}
.index a {
- font-size: 16px;
+ font-size: 15px;
display: block;
}
.index .hidden {
@@ -578,7 +578,7 @@ li.disabled a {
top: 0px;
}
.donation{
- background: linear-gradient(90deg, #4275b2 0%, #4eaa88 100%);
+ border: 1px solid #f1c62a;
border-radius: 2px;
padding: 5px 10px;
margin: auto;
@@ -593,7 +593,7 @@ li.disabled a {
text-decoration: none;
}
.donation p {
- font-size:1.2rem;
+ font-size:1rem;
text-align: center;
}
#SearchFrame {
@@ -671,7 +671,7 @@ li.disabled a {
padding: 0;
margin: 0;
list-style: none;
- font-size: 16px;
+ font-size: 15px;
}
.contents-treeview {
-moz-user-select: none;
value='libreoffice-4-0-1'>libreoffice-4-0-1 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorArmin Le Grand <alg@apache.org>2012-10-23 12:46:28 +0000
committerCaolán McNamara <caolanm@redhat.com>2013-06-12 14:31:10 +0100
commite717d1dcce7f8906311c5ccdbb2326b61a702630 (patch)
tree91290db5179fa4b4927af94c0f023f40dcda434c /vcl
parent9e50e5f82927742c56e89258b80bc8cd93bb7e3b (diff)
Resolves: #i121237# Rework/Cleanup of Region code...
due to missing complete support for B2DPolygon class (cherry picked from commit cab10eeb7878edf224a004fd7640bd4adf8d3c51) Conflicts: cppcanvas/source/mtfrenderer/implrenderer.cxx svx/source/sdr/overlay/overlaymanagerbuffered.cxx svx/source/svdraw/svdpntv.cxx vcl/aqua/source/gdi/salgdi.cxx vcl/inc/region.h vcl/inc/unx/gtk/gtkgdi.hxx vcl/inc/vcl/regband.hxx vcl/inc/vcl/region.hxx vcl/os2/source/gdi/salgdi.cxx vcl/source/gdi/bmpacc3.cxx vcl/source/gdi/outdev2.cxx vcl/source/gdi/outmap.cxx vcl/source/gdi/regband.cxx vcl/source/gdi/region.cxx vcl/source/window/window.cxx vcl/unx/generic/gdi/pspgraphics.cxx vcl/unx/headless/svpgdi.cxx vcl/unx/headless/svppspgraphics.cxx vcl/win/source/gdi/salgdi.cxx Change-Id: Iee9a66ff431c3cecb7603e445147b67715de0f7d Remove unused variable to prevent compiler warning (cherry picked from commit 0ac65ccf079e3e22ac23cbe7ae546504c863c31f) Change-Id: Icbcaa9d576a7e560d96debc7360bdbe9090b3fd3 Wrong comparison with bool corrected (cherry picked from commit 612cefdcf6176b6bb847ce899d89af40ef313a90) Change-Id: I1cf5de6734b588f78d8e870ba7b7860634b461ce
Diffstat (limited to 'vcl')