Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5391 | Rev 5440 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
3508 stevensc 1
/*===================== TABLE OF CONTENT ======================= 1.	Header 2.  Nav Hover =============================================================*/
2
@import "./settings/variables.scss";
3
 
4
header {
5
    width: 100%;
5126 stevensc 6
    background-color: $bg-color;
7
    border-bottom: 1px solid $border-primary;
3508 stevensc 8
}
9
 
5150 stevensc 10
.user-profile-extended-ov {
11
    background-color: $bg-color;
12
    border-radius: $border-radius;
13
    box-shadow: $shadow;
14
    padding: 1rem;
15
    width: 100%;
16
 
17
    h3 {
18
        color: $title-color;
19
        font-size: 18px;
20
        font-weight: 600;
21
        margin-bottom: 0.5rem;
22
    }
23
 
24
    span,
25
    p {
26
        line-height: 22px;
27
        color: $font-color;
28
    }
29
 
30
    i {
31
        color: $font-color;
32
        font-size: 13px;
33
    }
34
 
35
    strong {
36
        font-weight: bold !important;
37
    }
38
}
39
 
40
.user-profile-ov {
41
    background-color: $bg-color;
42
    border-radius: $border-radius;
43
    box-shadow: $shadow;
44
    padding: 1rem;
45
    width: 100%;
46
 
47
    h3 {
48
        color: $title-color;
49
        font-size: 18px;
50
        font-weight: 600;
51
        margin-bottom: 20px;
52
 
53
        a {
54
            color: $title-color;
55
        }
56
    }
57
 
58
    i {
59
        color: $title-color;
60
        font-size: 13px;
61
        padding-left: 5px;
62
    }
63
 
64
    h4 {
65
        font-size: 16px;
66
        color: $title-color;
67
        font-weight: 600;
68
        margin-bottom: 10px;
69
    }
70
 
71
    p {
72
        color: $font-color;
73
        font-size: 14px;
74
        line-height: 24px;
75
    }
76
 
77
    .st2 p {
78
        margin-bottom: 23px;
79
    }
80
 
81
    &>span {
82
        color: $font-color;
83
        font-size: 14px;
84
        width: 100%;
85
        margin-bottom: 8px;
86
        margin-top: 3px;
87
    }
88
 
89
    ul li {
90
        display: inline-block;
91
        margin-bottom: 10px;
92
        padding: 0 2px;
93
 
94
        a {
95
            display: inline-block;
96
            color: $bg-color;
97
            font-size: 14px;
98
            font-weight: 600;
99
            background-color: $font-color;
100
            border-radius: 30px;
101
            padding: 10px 15px;
102
        }
103
    }
104
 
105
}
106
 
107
.user-social-network-ov {
108
    width: 100%;
109
    background-color: $bg-color;
110
 
111
    h3 {
112
        color: $title-color;
113
        font-size: 18px;
114
        font-weight: 600;
115
    }
116
 
117
    i {
118
        color: $font-color;
119
        font-size: 13px;
120
        padding-left: 5px;
121
    }
122
}
123
 
5438 stevensc 124
 
5150 stevensc 125
// User profile ov - End
3508 stevensc 126
.msg-numbers {
127
    background-color: #1dac98;
128
}
129
 
130
.message-btn a {
131
    margin: 0.5rem 0;
132
}
133
 
134
.sign-in {
135
    background-color: white;
136
}
137
 
138
.sign-control li.current a {
3737 stevensc 139
    background-color: $button-bg-secondary;
3508 stevensc 140
}
141
 
142
.sign-control li a.current {
3737 stevensc 143
    background-color: $button-bg-secondary;
144
    color: $button-text-color-secondary !important;
145
    border: 1px solid $border-primary;
3508 stevensc 146
}
147
 
148
.signup-tab ul li.current a {
149
    background-color: #0961bf;
150
}
151
 
152
.theme-green .back-bar .selected-bar {
153
    background-color: #0961bf;
154
    background-image: linear-gradient(to bottom, #0961bf, #0961bf);
155
}
156
 
157
.theme-green .back-bar .pointer {
158
    background-color: #0961bf;
159
}
160
 
161
.btn-unlike,
162
.btn-like {
163
    color: #0961bf;
164
}
165
 
5076 stevensc 166
.sign_link>a {
3508 stevensc 167
    color: #0961bf;
168
}
169
 
5076 stevensc 170
.view-more>a:hover {
3508 stevensc 171
    color: #0961bf;
172
}
173
 
5076 stevensc 174
.view-more>a {
3508 stevensc 175
    color: #0961bf;
176
}
177
 
178
.nav-tabs .nav-item.show .nav-link,
179
.nav-tabs .nav-link.active {
180
    color: #0961bf;
181
}
182
 
183
.tab-feed ul li.active span {
184
    color: #0961bf;
185
}
186
 
187
.msg-notifc {
188
    background-color: #0961bf;
189
}
190
 
191
.msg-status {
192
    background-color: #0961bf;
193
}
194
 
195
.select-with-icon {
196
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
197
    background-repeat: no-repeat;
198
    background-position-x: 100%;
199
    background-position-y: 5px;
200
}
201
 
4329 stevensc 202
.msgs_icons-container {
3508 stevensc 203
    display: flex;
4773 stevensc 204
    flex-direction: column;
4779 stevensc 205
    gap: 0.5rem;
3508 stevensc 206
}
207
 
208
.messages-sec .icon {
209
    cursor: pointer;
210
    height: 30px;
211
    display: grid;
212
    place-items: center;
213
    width: 30px;
214
    border-radius: 50px;
215
    padding: 0;
216
    transition: all 0.2s;
217
    color: #0860bf;
218
 
5126 stevensc 219
    &:hover {
220
        background-color: #efefef;
221
    }
3508 stevensc 222
}
223
 
5076 stevensc 224
.messages-list>.messages_conversation-search {
3508 stevensc 225
    transition: all 0.2s;
226
    padding: 10px 20px;
227
    position: relative;
228
    overflow: hidden;
229
 
5126 stevensc 230
    input {
231
        outline: none;
232
        box-shadow: none;
233
        border: 1px solid #e6e6e6;
234
    }
3508 stevensc 235
 
5126 stevensc 236
    &.hide {
237
        height: 0;
238
        padding: 0;
239
    }
3508 stevensc 240
}
241
 
242
.message-bar-head .usr-msg-details {
243
    display: flex;
244
    align-items: center;
245
}
246
 
247
.message-select-conversation {
248
    display: grid;
249
    place-items: center;
250
    width: 100%;
4345 stevensc 251
    height: 100%;
3508 stevensc 252
    min-height: 300px;
5076 stevensc 253
 
4345 stevensc 254
    .msgs-select-container {
255
        display: flex;
256
        flex-direction: column;
257
        align-items: center;
258
        gap: 0.5rem;
5076 stevensc 259
 
4345 stevensc 260
        .icon {
261
            font-size: 2.5rem;
5076 stevensc 262
 
4345 stevensc 263
            &:hover {
264
                background-color: #0000;
265
            }
266
        }
267
    }
3508 stevensc 268
}
269
 
270
@media (min-width: 1200px) {
271
    .msgs-container {
272
        max-width: 1000px;
273
    }
274
}
275
 
276
.main-conversation-box .message-bar-head .usr-msg-details .icon {
277
    display: none;
278
}
279
 
280
.msgs-hide {
281
    font-size: 1.2rem;
282
    color: var(--gray);
283
}
284
 
285
@media (max-width: 992px) {
286
    .main-conversation-box .message-bar-head .usr-msg-details .icon {
287
        display: grid;
288
    }
289
}
290
 
291
@media (max-width: 992px) {
292
    .msgs-hide {
293
        display: none;
294
    }
295
}
296
 
4373 stevensc 297
.icon-hide {
298
    display: flex;
299
    align-items: center;
300
    gap: 0.5rem;
301
    padding-top: 0.5rem;
302
    font-size: 1.2rem;
303
    cursor: pointer;
5076 stevensc 304
 
4373 stevensc 305
    &,
306
    span {
307
        color: $icons-color;
308
    }
5076 stevensc 309
 
4373 stevensc 310
    @media (min-width: 992px) {
3508 stevensc 311
        display: none !important;
312
    }
313
}
314
 
315
#shared_with {
316
    font-size: 16px;
317
    display: inline-block;
318
    height: 40px;
319
    padding: 0 15px;
320
    line-height: 40px;
321
    font-weight: 500;
322
}
323
 
5076 stevensc 324
#shared_with>option {
3508 stevensc 325
    font-size: 1.2rem;
326
    display: inline-block;
327
    height: 40px;
328
    padding: 0 15px;
329
    line-height: 40px;
330
    font-weight: 500;
331
}
332
 
333
.flww {
334
    background-color: #0961bf;
335
}
336
 
337
.tab-feed ul li.active span {
338
    color: #1dac98;
339
}
340
 
5076 stevensc 341
.add-pic-box [type="file"]+label {
3508 stevensc 342
    border: 2px solid #0961bf;
343
    color: #0961bf;
344
}
345
 
5076 stevensc 346
.add-pic-box [type="file"]+label:hover {
3508 stevensc 347
    background: #0961bf;
348
}
349
 
350
.user-pro-img .add-dp {
351
    left: 34%;
352
}
353
 
354
/****estilos del feed***/
355
.img-sm {
356
    width: 46px;
357
    height: 46px;
358
}
359
 
360
.panel .panel-footer,
5076 stevensc 361
.panel> :last-child {
3508 stevensc 362
    border-bottom-left-radius: 0;
363
    border-bottom-right-radius: 0;
364
}
365
 
366
.media-block .media-left {
367
    display: block;
368
    float: left;
369
}
370
 
371
.media-block .media-right {
372
    float: right;
373
}
374
 
375
.media-block .media-body {
376
    display: block;
377
    overflow: hidden;
378
    width: auto;
379
}
380
 
381
.middle .media-left,
382
.middle .media-right,
383
.middle .media-body {
384
    vertical-align: middle;
385
}
386
 
387
.thumbnail {
388
    border-radius: 0;
389
    border-color: #e9e9e9;
390
}
391
 
392
.tag.tag-sm,
5076 stevensc 393
.btn-group-sm>.tag {
3508 stevensc 394
    padding: 5px 10px;
395
}
396
 
397
.tag:not(.label) {
398
    background-color: #fff;
399
    padding: 6px 12px;
400
    border-radius: 2px;
401
    border: 1px solid #cdd6e1;
402
    font-size: 12px;
403
    line-height: 1.42857;
404
    vertical-align: middle;
405
    -webkit-transition: all 0.15s;
406
    transition: all 0.15s;
407
}
408
 
409
.text-muted,
410
a.text-muted:hover,
411
a.text-muted:focus {
412
    color: #acacac;
413
}
414
 
415
.text-sm {
416
    font-size: 0.9em;
417
}
418
 
419
.text-5x,
420
.text-4x,
421
.text-5x,
422
.text-2x,
423
.text-lg,
424
.text-sm,
425
.text-xs {
426
    line-height: 1.25;
427
}
428
 
429
.btn-trans {
430
    background-color: transparent;
431
    border-color: transparent;
432
    color: #929292;
433
}
434
 
435
.btn-icon {
436
    padding-left: 9px;
437
    padding-right: 9px;
438
}
439
 
440
.btn-sm,
5076 stevensc 441
.btn-group-sm>.btn,
3508 stevensc 442
.btn-icon.btn-sm {
443
    padding: 5px 10px !important;
444
}
445
 
446
.mar-top {
447
    margin-top: 15px;
448
}
449
 
450
.save {
451
    background-color: #0961bf;
452
}
453
 
454
.place-bid-btn {
455
    background-color: #0961bf !important;
456
}
457
 
458
.sn-field-has-error {
459
    border: 1px solid red;
460
    margin-bottom: 5px;
461
}
462
 
463
.sn-field-invalid-feedback {
464
    color: red;
465
    font-size: 13px;
466
    line-height: 20px;
467
    margin-bottom: 5px;
468
}
469
 
470
.form-group {
471
    margin-bottom: 5px;
472
    margin-top: 5px;
473
}
474
 
475
.form-group-has-error {
476
    border: 1px solid red !important;
477
}
478
 
479
.form-group-invalid-feedback {
480
    color: red;
481
    font-size: 13px;
482
    line-height: 20px;
483
    margin-bottom: 5px;
484
}
485
 
5076 stevensc 486
.fgt-sec input[type="checkbox"]+label span:before {
3508 stevensc 487
    background-color: #0961bf;
488
}
489
 
490
.info-page {
491
    padding: 50px 0;
492
}
493
 
494
.section_admin_title_buttons {
495
    width: 100%;
496
    display: flex;
497
    margin-left: 0;
498
    justify-content: space-between;
499
    align-items: center;
500
}
501
 
502
.market_admin_title_buttons {
5303 stevensc 503
    width: 100%;
3508 stevensc 504
    display: flex;
3987 stevensc 505
    gap: 0.5rem;
5304 stevensc 506
    flex-direction: column-reverse;
5300 stevensc 507
 
508
    .search_input,
509
    .search_categories {
510
        position: relative;
511
        margin-bottom: 0;
512
 
513
        input,
514
        select,
515
        input:focus {
516
            background-color: $bg-color;
5303 stevensc 517
            border-radius: 5rem;
5300 stevensc 518
 
519
            &::placeholder {
520
                color: $font-color;
521
            }
522
        }
523
    }
3508 stevensc 524
}
525
 
526
.search-btn {
5304 stevensc 527
    padding: 0 .8rem;
3508 stevensc 528
    right: 0;
529
    height: 100%;
5303 stevensc 530
    background: $button-bg;
3508 stevensc 531
    position: absolute;
532
    top: 0;
5303 stevensc 533
    color: $button-text-color;
3508 stevensc 534
    font-weight: 600;
5303 stevensc 535
    border-start-end-radius: 5rem;
536
    border-bottom-right-radius: 5rem;
537
    opacity: .8;
538
    transition: all 200ms;
539
 
5304 stevensc 540
    &:hover,
541
    &:active {
5303 stevensc 542
        opacity: 1;
543
    }
3508 stevensc 544
}
545
 
546
.section_admin_title_buttons h1.title,
547
.section_admin_title_buttons h2 {
3523 stevensc 548
    color: $title-color;
3508 stevensc 549
    font-weight: bold;
550
    font-size: 18px;
551
}
552
 
553
.section_admin_title_buttons h2 {
554
    cursor: pointer;
555
}
556
 
557
@media (min-width: 768px) {
558
    .section_admin_title_buttons {
559
        width: 50%;
560
        margin-left: auto;
561
    }
562
 
563
    .market_admin_title_buttons {
5305 stevensc 564
        align-items: center;
3508 stevensc 565
        flex-direction: row;
5305 stevensc 566
        justify-content: end;
3508 stevensc 567
    }
568
 
569
}
570
 
571
.section_admin_form {
572
    float: left;
573
    width: 100%;
574
    padding-left: 15px;
575
}
576
 
577
.section_admin_form form input,
578
.section_admin_form form select {
579
    width: 100%;
580
    padding: 0 15px 0 15px;
581
    color: #000000;
582
    font-size: 14px;
583
    border: 1px solid #e5e5e5;
584
    height: 40px;
585
}
586
 
587
.section_admin_form form textarea {
588
    width: 100%;
589
    padding: 10px 15px 0 15px;
590
    color: #000000;
591
    font-size: 14px;
592
    border: 1px solid #e5e5e5;
593
    height: 300px;
594
}
595
 
596
/* .section_admin_form form button {color: #ffffff; font-size: 16px; background-color: #0961bf; padding: 12px 27px; border: 0; font-weight: 500; margin-top: 30px; cursor: pointer; }*/
597
.section_admin_form .form-group label {
598
    color: #666 !important;
599
    font-weight: 400;
600
    font-size: 14px;
601
    padding-bottom: 5px;
602
}
603
 
604
.section_admin_form .form-group .toggle-group label {
605
    color: #fff !important;
606
    font-weight: 400;
607
    font-size: 16px;
608
    padding-bottom: 5px;
609
}
610
 
611
.section_admin_form .form-group .toggle-group label.toggle-off {
612
    background-color: #808080;
613
    border-color: #808080;
614
}
615
 
616
.section_admin_form .form-group .toggle-group label.toggle-off:hover {
617
    background-color: #808080;
618
    border-color: #808080;
619
}
620
 
621
.select2-results__option {
622
    display: block;
623
    padding: 10px 15px 0 15px !important;
624
    overflow: hidden;
625
    text-overflow: ellipsis;
626
    white-space: nowrap;
627
    font-size: 14px;
628
    border: 1px solid #e5e5e5;
629
    height: 40px;
630
}
631
 
632
.text-vertical-middle {
633
    vertical-align: middle !important;
634
}
635
 
636
table.dataTable thead .sorting:before,
637
table.dataTable thead .sorting_asc:before,
638
table.dataTable thead .sorting_desc:before,
639
table.dataTable thead .sorting_asc_disabled:before,
640
table.dataTable thead .sorting_desc_disabled:before {
641
    right: 1em;
642
    /* content: "\2191";*/
643
    content: none !important;
644
}
645
 
646
table.dataTable thead .sorting:after,
647
table.dataTable thead .sorting_asc:after,
648
table.dataTable thead .sorting_desc:after,
649
table.dataTable thead .sorting_asc_disabled:after,
650
table.dataTable thead .sorting_desc_disabled:after {
651
    right: 0.5em;
652
    /*content: "\2193";*/
653
    content: none !important;
654
}
655
 
656
.btn-edit {
657
    display: inline-block;
658
    padding: 0 12px;
659
    color: #fff;
660
    height: 35px;
661
    line-height: 35px;
662
    background-color: #0961bf;
663
}
664
 
665
.btn-delete {
666
    display: inline-block;
667
    padding: 0 12px;
668
    color: #fff;
669
    height: 35px;
670
    line-height: 35px;
671
    background-color: #e44d3a;
672
}
673
 
674
.overview-box.open {
675
    z-index: 1000 !important;
676
}
677
 
678
.social_links li a {
679
    line-height: 18px;
680
}
681
 
682
.datepicky {
683
    float: none;
684
}
685
 
686
.datefm {
687
    float: none;
688
}
689
 
690
span.group-span-filestyle {
691
    border: 1px solid #aaa;
692
    color: #fff;
693
    background-color: #0961bf;
694
    margin-top: 10px;
695
}
696
 
697
span.group-span-filestyle:hover {
698
    color: #fff;
699
    background-color: #0961bf;
700
}
701
 
702
.pac-container {
703
    z-index: 1051 !important;
704
}
705
 
706
.custom-file-label:after {
707
    content: none;
708
}
709
 
710
.add-pic-box a {
711
    background: #fff;
712
    border: 2px solid #0961bf;
713
    border-radius: 3px;
714
    color: #0961bf;
715
    cursor: pointer;
716
    display: inline-block;
717
    font-size: 15px;
718
    font-weight: 600;
719
    outline: none;
720
    padding: 12px 20px;
721
    position: relative;
722
    transition: all 0.3s;
723
    vertical-align: middle;
724
    margin: 0;
725
    text-transform: uppercase;
726
}
727
 
728
#skills-box ul {
729
    height: auto;
730
}
731
 
5076 stevensc 732
.custom-control-input:checked~.custom-control-label::before {
3508 stevensc 733
    color: #fff;
734
    border-color: #007bff;
735
    background-color: #007bff;
736
    box-shadow: none;
737
    outline: none;
738
}
739
 
740
#user-img-change {
741
    width: 150px;
742
    height: 150px;
743
    margin-right: 10px;
744
    -webkit-border-radius: 100px;
745
    -moz-border-radius: 100px;
746
    -ms-border-radius: 100px;
747
    -o-border-radius: 100px;
748
    border-radius: 100px;
3589 stevensc 749
    background-color: #fff;
3508 stevensc 750
}
751
 
752
.btn-onroom {
753
    cursor: pointer;
754
}
755
 
756
.form-group .toggle-btn .custom-control-label {
757
    position: relative;
758
    padding-left: 50px;
759
}
760
 
761
.file-upload-indicator {
762
    display: none;
763
}
764
 
765
b,
766
strong {
767
    font-weight: bolder !important;
768
}
769
 
770
a.read-more {
771
    color: #666666;
772
    font-weight: bold;
773
}
774
 
775
a.read-morea:visited {
776
    color: #666666;
777
    font-weight: bold;
778
}
779
 
780
.show-read-more p {
781
    text-align: justify;
782
    font-weight: 600;
3551 stevensc 783
    color: $subtitle-color;
5076 stevensc 784
 
3987 stevensc 785
    .more-text {
786
        display: none;
787
    }
3508 stevensc 788
}
789
 
790
.btn-trans:hover {
791
    color: #929292 !important;
792
}
793
 
5076 stevensc 794
.job-status-bar>a:hover {
3508 stevensc 795
    color: #1e5591 !important;
796
}
797
 
5076 stevensc 798
.job-status-bar>ul>li>a:hover {
3508 stevensc 799
    color: #1e5591;
800
}
801
 
802
.comment-section {
803
    box-shadow: none;
804
}
805
 
806
.process-comm {
807
    padding-top: 10px;
808
    padding-bottom: 20px;
809
}
810
 
811
nav ul li a {
812
    color: #000000;
813
}
814
 
815
.usy-name h4 {
816
    color: #000000;
817
    font-size: 16px;
818
    text-transform: capitalize;
819
    font-weight: 600;
820
    margin-bottom: 5px;
821
    margin-top: 2px;
822
}
823
 
824
.message-btn a.btn-request-connection {
825
    background-color: #53d690;
826
}
827
 
828
.message-btn a.btn-cancel-connection {
829
    background-color: #e44d3a;
830
}
831
 
832
.message-btn a.btn-send-message {
833
    background-color: #51a5fb;
834
}
835
 
836
.bootbox-confirm .btn-danger {
837
    color: #000000;
838
}
839
 
840
.title-bar {
841
    float: left;
842
    width: 280px;
843
    margin-top: 12px;
844
    margin-bottom: 9px;
845
    vertical-align: middle;
846
}
847
 
848
.title-bar .title {
849
    color: #ffffff;
850
    font-size: 20px;
851
    text-transform: capitalize;
852
    font-weight: 600;
853
}
854
 
855
/*New Style*/
856
.online-btn {
857
    border-radius: 50px;
858
    width: 20px;
859
    height: 20px;
860
}
861
 
862
/***********************************new style jm*********************************/
863
.forum-links ul li.active a {
864
    color: #1dac98;
865
}
866
 
867
.forum-links ul li.active {
868
    border-color: #1dac98;
869
}
870
 
871
.ask-question {
872
    color: #0961bf !important;
873
}
874
 
5076 stevensc 875
.suggestion-usd>span i:hover {
3508 stevensc 876
    background-color: #f4e6a6;
877
}
878
 
5076 stevensc 879
.view-more>.btn {
3508 stevensc 880
    background-color: #0961bf;
881
}
882
 
883
/* #shared_with {background-color: #0961bf; } #shared_with :hover {color: blank; background-color: #007bff; } */
884
.bid_now {
885
    background-color: #0961bf;
886
}
887
 
888
.follow {
889
    background-color: #1eb89e;
890
}
891
 
892
.footy-sec.mn ul li a {
893
    color: #01245d;
894
    font-size: 0.9rem;
895
}
896
 
897
.footy-sec.mn ul li a:hover {
898
    color: #01245d;
899
    font-weight: bold;
900
    transition: all 0.5s;
901
}
902
 
903
.footy-sec.mn p {
904
    color: #01245d;
905
}
906
 
907
.star-descp ul li i {
908
    color: #cacf8c;
909
}
910
 
911
.hire-us {
912
    background-color: #0961bf;
913
}
914
 
915
.company-up-info {
916
    background-color: #ffff;
917
}
918
 
919
.post_with_border {
920
    border-left: 4px solid #1eb89e;
921
}
922
 
923
.sign_link {
924
    background-color: #ffff;
925
}
926
 
927
.search-title {
928
    padding-left: 2%;
929
    font-size: 1.2rem;
930
}
931
 
932
.portfolio-gallery-sec {
933
    background-color: #f5f5f7;
934
}
935
 
936
.filter-dd form input,
937
.filter-dd form select {
938
    background-color: #fff;
939
}
940
 
941
.feed-comment-container {
942
    margin-top: 1rem;
943
}
944
 
945
.pagination li .page-link {
946
    color: #0961bf;
947
}
948
 
949
.comment-section {
950
    background-color: #f5f5f7;
951
}
952
 
953
.company_profile_info {
954
    border-radius: 5px;
955
}
956
 
957
.full-width {
958
    border-radius: 5px;
959
    box-shadow: 0px 0px 11px 0px rgb(0 0 0 / 5%);
960
}
961
 
962
.tab-feed.st2 ul li :hover {
963
    border-bottom: 3px solid #f4e6a6;
964
}
965
 
966
.border-none {
967
    border: none !important;
968
}
969
 
5076 stevensc 970
.usr-pic>img {
3508 stevensc 971
    width: 80%;
972
}
973
 
974
.user-specs {
975
    padding: 39px 0 10px 0;
976
}
977
 
978
.job-status-bar {
979
    /* background-image: linear-gradient(#f5f5f7, #ffff); */
980
    display: flex;
981
    justify-content: space-between;
982
    align-items: center;
983
    /* border-radius: 10px; */
984
}
985
 
986
.message-bar-head {
987
    display: flex;
988
    height: 13vh;
989
    justify-content: space-between;
990
    padding: 20px;
991
    width: 100%;
992
}
993
 
994
.form-control:disabled,
995
.form-control[readonly] {
996
    background-color: #ffff;
997
}
998
 
999
.file-caption.icon-visible .file-caption-name {
1000
    padding-bottom: 15px;
1001
}
1002
 
1003
/**notificaciones**/
1004
.notification {
1005
    color: white;
1006
    text-decoration: none;
1007
    padding: 0px 10px;
1008
    position: relative;
1009
    display: inline-block;
1010
    border-radius: 2px;
1011
    font-size: 16px;
1012
}
1013
 
1014
.text-submenu {
1015
    color: #0961bf;
1016
 
5438 stevensc 1017
    &:hover {
1018
        font-weight: bold;
1019
        color: #0961bf;
1020
        transition: all 0.5s;
1021
    }
3508 stevensc 1022
}
1023
 
1024
.my-company-dropdown.show {
1025
    display: block;
1026
}
1027
 
1028
/**estilos altos de las columnas* .right-sidebar {margin-top: -7px; }*/
1029
 
1030
.message-btn {
1031
    display: inherit;
1032
    flex-direction: column;
1033
}
1034
 
1035
.cursor-pointer {
1036
    cursor: pointer;
1037
}
1038
 
4590 stevensc 1039
.cursor-auto {
1040
    cursor: initial !important;
5076 stevensc 1041
}