Compare commits

..

No commits in common. "3e7d12b6e4d970e17e271eed0fab68e86cddc9c8" and "42126c14899c9626a9a2bdd5757794542dd3e860" have entirely different histories.

3 changed files with 11 additions and 47 deletions

View File

@ -1,11 +0,0 @@
port module Scylla.Notification exposing (..)
import Scylla.Model exposing (..)
import Json.Decode
type alias Notification =
{ name : String
, text : String
}
port sendNotificationPort : Notification -> Cmd msg
port onNotificationClockPort : (Json.Decode.Value -> msg) -> Sub msg

View File

@ -1,12 +0,0 @@
if("Notification" in window) {
Notification.requestPermission();
}
function setupNotificationPorts(app) {
app.ports.sendNotificationPort.subscribe(function(data) {
var options = {
"body" : data.text
}
new Notification(data.name, options)
})
}

View File

@ -3,8 +3,6 @@ $primary-color: #53C0FA;
$primary-color-highlight: #4298C7; $primary-color-highlight: #4298C7;
$primary-color-light: #9FDBFB; $primary-color-light: #9FDBFB;
$active-input-color: white; $active-input-color: white;
$background-color: #fafafa;
$background-color-dark: darken($background-color, 4%);
$transition-duration: .125s; $transition-duration: .125s;
$inactive-input-color: darken($active-input-color, 3%); $inactive-input-color: darken($active-input-color, 3%);
@ -18,7 +16,7 @@ html, body {
body { body {
font-family: 'Open Sans', sans-serif; font-family: 'Open Sans', sans-serif;
margin: 0px; margin: 0px;
background-color: $background-color; background-color: #fbfbfb;
} }
@mixin input-common { @mixin input-common {
@ -90,9 +88,15 @@ div.base-wrapper {
height: 100%; height: 100%;
div { div {
padding: 5px; padding: 3px;
box-sizing: border-box; box-sizing: border-box;
} }
h2 {
padding-bottom: 5px;
margin-bottom: 5px;
border-bottom: 1px solid $inactive-input-border-color;
}
} }
/* /*
@ -113,7 +117,7 @@ div.room-wrapper {
flex-grow: 1; flex-grow: 1;
display: flex; display: flex;
height: 100%; height: 100%;
flex-direction: column; flex-direction: column;
} }
/* /*
@ -139,34 +143,17 @@ div.events-wrapper {
} }
table.events-table { table.events-table {
border-collapse: collapse;
width: 100%;
td { td {
padding: 5px; padding-left: 5px;
vertical-align: top; vertical-align: top;
} }
td:nth-child(1) {
width: 0px;
white-space: nowrap;
}
tr:nth-child(2n) {
background-color: $background-color-dark;
}
} }
span.sender-wrapper { span.sender-wrapper {
border-radius: 2px; border-radius: 2px;
padding-left: 5px; padding-left: 5px;
padding-right: 5px; padding-right: 5px;
display: inline-block; float: right;
box-sizing: border-box;
text-align: center;
width: 100%;
max-width: 100px;
text-overflow: ellipsis;
} }
/** /**