mirror of
https://github.com/status-im/status-react.git
synced 2025-01-17 22:42:16 +00:00
7279f2bc19
Former-commit-id: cdebb4c312a9e997b9b135dfe85802c698604a95
119 lines
2.4 KiB
Clojure
119 lines
2.4 KiB
Clojure
(ns status-im.chats-list.styles
|
|
(:require [status-im.components.styles :refer [color-white
|
|
color-blue
|
|
online-color
|
|
text1-color
|
|
text2-color
|
|
new-messages-count-color]]
|
|
[status-im.components.tabs.styles :refer [tabs-height]]))
|
|
|
|
(def chat-container
|
|
{:flexDirection :row
|
|
:paddingVertical 15
|
|
:paddingHorizontal 16
|
|
:height 90})
|
|
|
|
(def chat-icon-container
|
|
{:marginTop -2
|
|
:marginLeft -4
|
|
:width 48
|
|
:height 48})
|
|
|
|
(def item-container
|
|
{:flexDirection :column
|
|
:marginLeft 12
|
|
:flex 1})
|
|
|
|
(def name-view
|
|
{:flexDirection :row})
|
|
|
|
(def name-text
|
|
{:marginTop -2.5
|
|
:color text1-color
|
|
:fontSize 14})
|
|
|
|
(def group-icon
|
|
{:marginTop 4
|
|
:marginLeft 8
|
|
:width 14
|
|
:height 9})
|
|
|
|
(def memebers-text
|
|
{:marginTop -0.5
|
|
:marginLeft 4
|
|
:fontSize 12
|
|
:color text2-color})
|
|
|
|
(def last-message-text
|
|
{:marginTop 7
|
|
:marginRight 40
|
|
:color text1-color
|
|
:fontSize 14
|
|
:lineHeight 20})
|
|
|
|
(def status-container
|
|
{:flexDirection :row
|
|
:position :absolute
|
|
:top 0
|
|
:right 0})
|
|
|
|
(def status-image
|
|
{:marginTop 6
|
|
:width 9
|
|
:height 7})
|
|
|
|
(def datetime-text
|
|
{:fontSize 12
|
|
:color text2-color
|
|
:marginLeft 5})
|
|
|
|
(def new-messages-container
|
|
{:position :absolute
|
|
:top 36
|
|
:right 0
|
|
:width 24
|
|
:height 24
|
|
:backgroundColor new-messages-count-color
|
|
:borderRadius 50})
|
|
|
|
(def new-messages-text
|
|
{:top 4
|
|
:left 0
|
|
:fontSize 10
|
|
:color color-blue
|
|
:textAlign :center})
|
|
|
|
(def hamburger-icon
|
|
{:width 16
|
|
:height 12})
|
|
|
|
(def search-icon
|
|
{:width 17
|
|
:height 17})
|
|
|
|
(def chats-container
|
|
{:flex 1
|
|
:backgroundColor :white})
|
|
|
|
(def list-container
|
|
{:backgroundColor :white})
|
|
|
|
(def create-icon
|
|
{:fontSize 20
|
|
:height 22
|
|
:color :white})
|
|
|
|
(def person-stalker-icon
|
|
{:fontSize 20
|
|
:height 22
|
|
:color :white})
|
|
|
|
(defn action-buttons-container [animation? offset-y]
|
|
;; todo fix overlaying of parent view
|
|
{:position :absolute
|
|
:right 0
|
|
:height 230
|
|
:width 220
|
|
:bottom 0
|
|
:transform [{:translateY (if animation? offset-y 1)}]})
|