Skip to content

Commit

Permalink
Add the rest of missing css files.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zimmi48 committed Oct 12, 2023
1 parent 95f5011 commit 1ef9bec
Show file tree
Hide file tree
Showing 7 changed files with 786 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ $(DST)/aliases.conf: NEWSINDEX aliases.footer.conf

assets: $(DST)/styles \
$(DST)/sites \
$(DST)/modules \
$(DST)/files \
$(DST)/scripts \
$(DST)/coq-workshop/files
Expand All @@ -67,6 +68,9 @@ $(DST)/styles:
$(DST)/sites:
cp -r sites $@

$(DST)/modules:
cp -r modules $@

$(DST)/scripts:
cp -r scripts $@

Expand Down
37 changes: 37 additions & 0 deletions modules/aggregator/aggregator.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@

#aggregator .feed-source .feed-title {
margin-top: 0;
}
#aggregator .feed-source .feed-image img {
margin-bottom: 0.75em;
}
#aggregator .feed-source .feed-icon {
float: right; /* LTR */
display: block;
}
#aggregator .feed-item {
margin-bottom: 1.5em;
}
#aggregator .feed-item-title {
margin-bottom: 0;
font-size: 1.3em;
}
#aggregator .feed-item-meta, #aggregator .feed-item-body {
margin-bottom: 0.5em;
}
#aggregator .feed-item-categories {
font-size: 0.9em;
}
#aggregator td {
vertical-align: bottom;
}
#aggregator td.categorize-item {
white-space: nowrap;
}
#aggregator .categorize-item .news-item .body {
margin-top: 0;
}
#aggregator .categorize-item h3 {
margin-bottom: 1em;
margin-top: 0;
}
43 changes: 43 additions & 0 deletions modules/node/node.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@

.node-unpublished {
background-color: #fff4f4;
}
.preview .node {
background-color: #ffffea;
}
#node-admin-filter ul {
list-style-type: none;
padding: 0;
margin: 0;
width: 100%;
}
#node-admin-buttons {
float: left; /* LTR */
margin-left: 0.5em; /* LTR */
clear: right; /* LTR */
}
td.revision-current {
background: #ffc;
}
.node-form .form-text {
display: block;
width: 95%;
}
.node-form .container-inline .form-text {
display: inline;
width: auto;
}
.node-form .standard {
clear: both;
}
.node-form textarea {
display: block;
width: 95%;
}
.node-form .attachments fieldset {
float: none;
display: block;
}
.terms-inline {
display: inline;
}
52 changes: 52 additions & 0 deletions modules/system/defaults.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@

/*
** HTML elements
*/
fieldset {
margin-bottom: 1em;
padding: .5em;
}
form {
margin: 0;
padding: 0;
}
hr {
height: 1px;
border: 1px solid gray;
}
img {
border: 0;
}
table {
border-collapse: collapse;
}
th {
text-align: left; /* LTR */
padding-right: 1em; /* LTR */
border-bottom: 3px solid #ccc;
}

/*
** Markup free clearing
** Details: http://www.positioniseverything.net/easyclearing.html
*/
.clear-block:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}

.clear-block {
display: inline-block;
}

/* Hides from IE-mac \*/
* html .clear-block {
height: 1%;
}
.clear-block {
display: block;
}
/* End hide from IE-mac */
49 changes: 49 additions & 0 deletions modules/system/system-menus.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@

ul.menu {
list-style: none;
border: none;
text-align:left; /* LTR */
}
ul.menu li {
margin: 0 0 0 0.5em; /* LTR */
}
li.expanded {
list-style-type: circle;
list-style-image: url(../../misc/menu-expanded.png);
padding: 0.2em 0.5em 0 0; /* LTR */
margin: 0;
}
li.collapsed {
list-style-type: disc;
list-style-image: url(../../misc/menu-collapsed.png); /* LTR */
padding: 0.2em 0.5em 0 0; /* LTR */
margin: 0;
}
li.leaf {
list-style-type: square;
list-style-image: url(../../misc/menu-leaf.png);
padding: 0.2em 0.5em 0 0; /* LTR */
margin: 0;
}
li a.active {
color: #000;
}
td.menu-disabled {
background: #ccc;
}
ul.links {
margin: 0;
padding: 0;
}
ul.links.inline {
display: inline;
}
ul.links li {
display: inline;
list-style-type: none;
padding: 0 0.5em;
}
.block ul {
margin: 0;
padding: 0 0 0.25em 1em; /* LTR */
}
Loading

0 comments on commit 1ef9bec

Please sign in to comment.