Subversion Repository Public Repository

Nextrek

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
body {
    margin: 0;
    padding: 1vw;
    font-family: Arial, Helvetica, sans-serif;
}
#page {
    display: flex;
}
#customers-rooms {
    width: 70vw;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 1vw;
}
#customers-rooms > .room {
    width: 32vw;
    border: 2px solid #6755f7;
    margin: 1vw;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
}
#customers-rooms > .room ul {
    list-style: none;
    flex-grow: 1;
    padding: 10px 5px;
    max-height: 170px;
    overflow-y: auto;
    overflow-x: hidden;
}
#customers-rooms > .room .room-title {
    padding: 5px 10px;
    color: #f3bc42;
    background: #6755f7; 
    font-size: 14px;
}
#customers-rooms > .room .close {
    content: '×';
    position: absolute;
    right: 0;
    top: 0;
}
#customers-rooms > .room li {
    padding: 5px 10px;
    clear: both;
    background: #eee;
    margin: 5px;
}
#customers-rooms > .room li.operator {
    float: right;
    border-radius: 10px 0 10px 10px;
}
#customers-rooms > .room li.customer {
    float: left;
    border-radius: 0 10px 10px 10px;
}
#customers-rooms > .room form {
    border-top: 2px solid #6755f7;
    display: flex;
}
#customers-rooms > .room form input[type="text"],
#customers-rooms > .room form input[type="file"] {
    border: 0;
    flex-grow: 1;
    padding: 0 10px;
    outline: none;
}
#customers-rooms > .room form input[type="text"]:focus {
    background-color: #faebbf;
}
#customers-rooms > .room form button {
    color: #f3bc42;
    background: #6755f7;
    padding: 6px 10px;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    white-space: nowrap;
}
.online-users {
    width: 15vw;
}
.online-users li {
    list-style: none;
    display: block;
    background: #6755f7; 
    color: #f3bc42; 
    padding: 6px; 
    cursor: pointer; 
    border-radius: 3px;
    margin: 5px 0;
}

Commits for Nextrek/socketIO/public/style/rooms.css

Diff revisions: vs.
Revision Author Commited Message
1129 Diff Diff GGentile picture GGentile Wed 23 Jan, 2019 23:23:52 +0000

room leave and notify guests

1127 Diff Diff GGentile picture GGentile Wed 09 Jan, 2019 13:47:30 +0000

send image

1123 Diff Diff GGentile picture GGentile Fri 04 Jan, 2019 00:19:22 +0000
1120 Diff Diff GGentile picture GGentile Tue 04 Dec, 2018 10:31:37 +0000
1119 GGentile picture GGentile Mon 03 Dec, 2018 23:13:28 +0000