Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
Merge pull request #17 from milky-ashes/master
Browse files Browse the repository at this point in the history
New element for dl
  • Loading branch information
wolfy-j committed Jan 26, 2016
2 parents 1c7db2d + 5133127 commit aa1b217
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 1 deletion.
15 changes: 15 additions & 0 deletions resources/styles/spiral/vault/sstyle.scss
Original file line number Diff line number Diff line change
Expand Up @@ -737,6 +737,11 @@ textarea {
color: #666;
}

.dropdown-content li > a,
.dropdown-content li > span {
padding: 10px 16px;
}

/*paginator*/
.pagination li {
float: none;
Expand Down Expand Up @@ -823,3 +828,13 @@ textarea {
}
}

/*listing*/
.user-name {
display: inline-block;
margin-left: 15px;

label {
vertical-align: top;
}
}

11 changes: 11 additions & 0 deletions resources/styles/spiral/vault/vault.css
Original file line number Diff line number Diff line change
Expand Up @@ -10862,6 +10862,10 @@ textarea {
margin-bottom: 0;
color: #666; }

.dropdown-content li > a,
.dropdown-content li > span {
padding: 10px 16px; }

/*paginator*/
.pagination li {
float: none;
Expand Down Expand Up @@ -10926,3 +10930,10 @@ textarea {
text-transform: none; }
.file-field.input-field .btn span:before, .file-field.input-field .btn-large span:before {
display: none; }

/*listing*/
.user-name {
display: inline-block;
margin-left: 15px; }
.user-name label {
vertical-align: top; }
3 changes: 2 additions & 1 deletion source/views/bundle.dark.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@

<!--Couple aliases-->
<dark:use path="vault:elements/uri" as="vault:href"/>
<dark:use path="vault:elements/uri" as="vault:url"/>
<dark:use path="vault:elements/uri" as="vault:url"/>
<dark:use path="vault:line" as="info:line"/>
3 changes: 3 additions & 0 deletions source/views/elements/info.dark.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<dl class="${class}" node:attributes>
${context}
</dl>
2 changes: 2 additions & 0 deletions source/views/elements/line.dark.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<dt>${name}</dt>
<dd>${value}</dd>

0 comments on commit aa1b217

Please sign in to comment.