Commit a326d21f40d3a79039c78c50321726cfba8cc585

Authored by Pedro de Lyra Pereira
1 parent a494f1c3

Implementing Use Report style

Showing 1 changed file with 118 additions and 1 deletions   Show diff stats
style.css
... ... @@ -3049,7 +3049,7 @@ li.folder-item:first-child {
3049 3049 #content .main-content form .article-translation-field {
3050 3050 font-size: 14px;
3051 3051 margin-bottom: 5px;
3052   - color: #231f20;
  3052 + color: #231f20;
3053 3053 }
3054 3054  
3055 3055 #content .main-content form .article-translation-field {
... ... @@ -3135,3 +3135,120 @@ input[type=checkbox] {
3135 3135 #content #content-inner a.lead-button:hover {
3136 3136 background-color: #fff;
3137 3137 }
  3138 +
  3139 +/******************** RELATO DE USO - AVALIAÇÃO DO USUÁRIO **********************/
  3140 +
  3141 +/***
  3142 +.main-content {
  3143 + background-image: url('images/tela_listagem_relato_uso_v3.jpg');
  3144 + background-repeat: no-repeat;
  3145 + padding: 0px;
  3146 +}*/
  3147 +
  3148 +#content .main-content .star-page-title .title {
  3149 + font-size: 34px !important;
  3150 +}
  3151 +
  3152 +#content .main-content .star-rate-data {
  3153 + border-top: 1px solid #D3D6DE !important;
  3154 + margin-top: 19px;
  3155 + padding-top: 29px;
  3156 + padding-left: 6px;
  3157 +}
  3158 +
  3159 +#content .main-content .star-rate-data .star-rate-form .star-rate-text,
  3160 +#content .main-content .star-rate-data .star-rate-form .star-container {
  3161 + display: inline;
  3162 + float: left;
  3163 +}
  3164 +
  3165 +#content .main-content .star-rate-data .star-rate-form .star-container {
  3166 + width: inherit;
  3167 + height: 30px;
  3168 + padding-left: 6px;
  3169 +}
  3170 +
  3171 +#content .main-content .star-rate-data .star-rate-form {
  3172 + padding-left: 14px;
  3173 + letter-spacing: 0.1px;
  3174 +}
  3175 +
  3176 +#content .main-content .star-rate-data .star-rate-form .star-rate-text {
  3177 + font-size: 14px;
  3178 + padding-top: 4px;
  3179 +}
  3180 +
  3181 +#content .main-content .star-rate-data .star-profile-information {
  3182 + width: 79px;
  3183 +}
  3184 +
  3185 +#content .main-content .star-rate-data .star-profile-information .star-profile-image {
  3186 + padding-top: 1px;
  3187 +}
  3188 +
  3189 +#content .main-content .star-rate-data .star-profile-information .star-profile-image img {
  3190 + border-radius: 4px;
  3191 + height: 60px;
  3192 + width: 60px;
  3193 +}
  3194 +
  3195 +#content .main-content .star-rate-data .star-rate-form .star-container .star-positive {
  3196 + background-image: url('images/star-positive-big.png');
  3197 +}
  3198 +
  3199 +#content .main-content .star-rate-data .star-rate-form .star-container .star-negative {
  3200 + background-image: url('images/star-negative-big.png');
  3201 +}
  3202 +
  3203 +#content .main-content .star-rate-data .star-rate-form .star-container .star-positive,
  3204 +#content .main-content .star-rate-data .star-rate-form .star-container .star-negative {
  3205 + display: table-cell;
  3206 + height: 30px;
  3207 + width: 28px;
  3208 +}
  3209 +
  3210 +#content .main-content .star-rate-data .star-rate-form .star-comment-container {
  3211 + padding-top: 23px;
  3212 +}
  3213 +
  3214 +#content .main-content .star-rate-data .star-rate-form .star-comment-container .formlabel {
  3215 + letter-spacing: -0.15px;
  3216 + margin-bottom: 2px;
  3217 +}
  3218 +
  3219 +#content .main-content .star-rate-data .star-rate-form .star-comment-container #comments_body {
  3220 + border-radius: 4px;
  3221 + height: 91px;
  3222 +}
  3223 +
  3224 +#content .main-content .star-rate-data .star-rate-form .star-comment-container .button-bar input {
  3225 + background-color: #4562b1;
  3226 + font-weight: 700;
  3227 + height: 31px;
  3228 + margin-top: 10px;
  3229 + text-transform: uppercase;
  3230 +}
  3231 +
  3232 +#content .main-content .star-rate-data .star-rate-form .star-comment-container .button-bar {
  3233 + margin-top: 66px;
  3234 + padding-bottom: 50px;
  3235 +}
  3236 +
  3237 +#content .star-rate-form .star-comment-container .comments-software-extra-fields .comments-software-people-benefited,
  3238 +#content .star-rate-form .star-comment-container .comments-software-extra-fields .comments-software-saved-values {
  3239 + font-size: 12px;
  3240 + float: left;
  3241 + padding-right: 20px;
  3242 +}
  3243 +
  3244 +#content .star-rate-form .star-comment-container .comments-software-extra-fields span {
  3245 + display: block;
  3246 + margin-bottom: 10px;
  3247 +}
  3248 +
  3249 +#content .star-rate-form .star-comment-container .comments-software-extra-fields #comments_people_benefited,
  3250 +#content .star-rate-form .star-comment-container .comments-software-extra-fields #comments_saved_value {
  3251 + width: 153px;
  3252 + padding: 4px;
  3253 + margin-top: 4px;
  3254 +}
... ...