Beautiful lines
This commit is contained in:
parent
0222dc1026
commit
96a96af7c8
|
@ -18,6 +18,18 @@ body {
|
||||||
#footer {
|
#footer {
|
||||||
height: 25px;
|
height: 25px;
|
||||||
}
|
}
|
||||||
|
.horizontal-line {
|
||||||
|
-webkit-box-shadow: rgba(255, 255, 255, 0.07) 0 1px 0;
|
||||||
|
-moz-box-shadow: rgba(255, 255, 255, 0.07) 0 1px 0;
|
||||||
|
box-shadow: rgba(255, 255, 255, 0.07) 0 1px 0;
|
||||||
|
border-bottom: 1px solid #121212;
|
||||||
|
}
|
||||||
|
.vertical-line {
|
||||||
|
-webkit-box-shadow: rgba(255, 255, 255, 0.07) 1px 0 0;
|
||||||
|
-moz-box-shadow: rgba(255, 255, 255, 0.07) 1px 0 0;
|
||||||
|
box-shadow: rgba(255, 255, 255, 0.07) 1px 0 0;
|
||||||
|
border-right: 1px solid #121212;
|
||||||
|
}
|
||||||
|
|
||||||
input#sendMessage {
|
input#sendMessage {
|
||||||
border: 0;
|
border: 0;
|
||||||
|
@ -40,7 +52,6 @@ td.prefix {
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
padding-right: 5px;
|
padding-right: 5px;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
border-right: 1px solid #555;
|
|
||||||
}
|
}
|
||||||
td.message {
|
td.message {
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
|
@ -125,7 +125,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="content" ng-show="connected">
|
<div class="content" ng-show="connected">
|
||||||
<div id="topbar">
|
<div id="topbar" class="horizontal-line">
|
||||||
<div class="brand">
|
<div class="brand">
|
||||||
<img alt="brand" src="img/favicon.png">
|
<img alt="brand" src="img/favicon.png">
|
||||||
</div>
|
</div>
|
||||||
|
@ -156,7 +156,7 @@
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="sidebar">
|
<div id="sidebar" class="vertical-line">
|
||||||
<ul class="nav nav-pills nav-stacked">
|
<ul class="nav nav-pills nav-stacked">
|
||||||
<li class="bufferfilter">
|
<li class="bufferfilter">
|
||||||
<form role="form">
|
<form role="form">
|
||||||
|
@ -181,7 +181,7 @@
|
||||||
{{ bufferline.date | date:'HH:mm' }}
|
{{ bufferline.date | date:'HH:mm' }}
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
<td class="prefix">
|
<td class="prefix vertical-line">
|
||||||
<span ng-repeat="part in bufferline.prefix" class="text" style="{{ part.fg }}">{{ part.text }}</span>
|
<span ng-repeat="part in bufferline.prefix" class="text" style="{{ part.fg }}">{{ part.text }}</span>
|
||||||
</td>
|
</td>
|
||||||
<td class="message">
|
<td class="message">
|
||||||
|
|
Loading…
Reference in New Issue