Enabled to display the Notes text on the Post Item

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7011 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2014-01-12 14:53:57 +00:00
parent c869fd863d
commit ff8e30db55
3 changed files with 55 additions and 8 deletions

View file

@ -540,6 +540,7 @@ MessageWidget QFrame#decryptFrame {
background: #CCFFCC;
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #CCFFCC, stop:1 #AAFFAA);
}
/* Posted Links */
PostedCreatePostDialog QLabel#info_label {
@ -548,3 +549,14 @@ PostedCreatePostDialog QLabel#info_label {
background: #FFFFD7;
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #FFFFD7, stop:1 #FFFFB2);
}
PostedItem QFrame#frame {
border: 2px solid #CCCCCC;
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #EEEEEE, stop: 1 #CCCCCC);
border-radius: 10px
}
PostedItem QLabel#notes {
border: 2px solid #CCCCCC;
border-radius: 10px
}