diff options
author | chriswatt <info@chriswatt.org> | 2016-02-05 19:24:23 +0000 |
---|---|---|
committer | chriswatt <info@chriswatt.org> | 2016-02-05 19:24:23 +0000 |
commit | 9fe9cd8b5c665d335f9c11d3f4ece88550397382 (patch) | |
tree | d047ea48523c103223f4908b81324778d7e996fe /public/less/_repository.less | |
parent | f8182ac5216153f9ac6dbfe31437b03ddadbf286 (diff) | |
download | gitea-9fe9cd8b5c665d335f9c11d3f4ece88550397382.tar.gz gitea-9fe9cd8b5c665d335f9c11d3f4ece88550397382.zip |
Add small user arrows on issue comments pointing to users avatar
Diffstat (limited to 'public/less/_repository.less')
-rw-r--r-- | public/less/_repository.less | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/public/less/_repository.less b/public/less/_repository.less index 4360f3d39f..659be635e9 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -376,8 +376,29 @@ .content { margin-left: 4em; .header { + &:before, &:after { + right: 100%; + top: 50%; + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; + pointer-events: none; + } + &:before { + border-right-color: #D4D4D5; + border-width: 9px; + margin-top: -9px; + } + &:after { + border-right-color: #f7f7f7; + border-width: 8px; + margin-top: -8px; + } font-weight: normal; padding: auto 15px; + position: relative; color: #767676; background-color: #f7f7f7; border-bottom: 1px solid #eee; |