📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
kuruyemisciscripti.demodesign.com.tr
/
public
/
scss
/
bourbon
/
css3
📝
_selection.scss
← Geri Dön
@charset "UTF-8"; /// Outputs the spec and prefixed versions of the `::selection` pseudo-element. /// /// @param {Bool} $current-selector [false] /// If set to `true`, it takes the current element into consideration. /// /// @example scss - Usage /// .element { /// @include selection(true) { /// background-color: #ffbb52; /// } /// } /// /// @example css - CSS Output /// .element::-moz-selection { /// background-color: #ffbb52; /// } /// /// .element::selection { /// background-color: #ffbb52; /// } @mixin selection($current-selector: false) { @if $current-selector { &::-moz-selection { @content; } &::selection { @content; } } @else { ::-moz-selection { @content; } ::selection { @content; } } }
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula