123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- // Utility classes
- // --------------------------------------------------
- .clickable {
- cursor: pointer;
- }
- .profile-header {
- overflow: auto;
- border-bottom: none;
- margin-bottom: @baseLineHeight * 1.5;
-
- .avatar-height {
- overflow: auto;
-
- .avatar {
- .border-radius(6px);
- margin-right: 24px;
- width: 125px;
- height: 125px;
- }
-
- h1 {
- font-size: 300%;
- }
-
- .lead {
- color: @gray;
-
- .badge {
- position: relative;
- bottom: 3px;
- }
-
- .muted {
- color: lighten(@gray, 25%);
- }
- }
- }
-
- .tabs-extra {
- margin-top: -33px;
- }
-
- .nav-tabs {
- margin-top: -22px;
- margin-bottom: 0px;
- padding-left: 142px;
- }
- }
- .avatar-menu {
- h3 {
- margin-top: 0px;
- }
- }
- .alerts-list {
- a {
- font-weight: bold;
- }
- }
- // Diff table
- // --------------------------------------------------
- .diff {
- margin: 18px 0px;
- padding: 0px;
-
- table {
- .border-radius(3px);
- width: 100%;
-
- tr {
- td {
- padding: 2px 8px;
-
- &.line {
- background-color: @grayLighter;
- border-right: 1px solid @grayLight;
- width: 1%;
-
- text-align: right;
-
- a {
- color: @gray;
- }
- }
-
- &.even {
- background-color: darken(@white, 8%);
- }
-
- &.added {
- background-color: lighten(@green, 40%);
-
- &.even {
- background-color: lighten(@green, 32%);
- }
- }
-
- &.removed {
- background-color: lighten(@red, 50%);
-
- &.even {
- background-color: lighten(@red, 42%);
- }
- }
- }
- }
- }
- font-family: @monoFontFamily;
- font-weight: bold;
- }
- // Shorts-list
- // --------------------------------------------------
- .shorts-list {
- border-top: 1px solid @grayLighter;
- margin-top: 12px;
-
- li {
- border-bottom: 1px solid @grayLighter;
- padding: 0px;
- padding-bottom: 12px;
- margin: 0px;
- margin-top: 12px;
-
- .avatar{
- .border-radius(3px);
- float: left;
- width: 40px;
- height: 40px;
- }
-
- p {
- margin: 0px;
- margin-left: 54px;
-
- &.message {
- color: @gray;
- }
-
- &.location {
- color: @grayLight;
- font-size: 80%;
- }
- }
- }
- }
|