mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-09 15:50:21 +00:00
0608bf1c3d
ee73997
Make erc work better when encountering unknown prefix charsb99141d
Make erc completion case-insensitive again66c4620
Make complection in erc use consistent casing8c562b2
Make /QUIT in erc more robustd93d2c5
Make tracking faces in Emacs work more reliablyaf6ab7e
Make shr not bug out on images on non-graphical displays3311f40
Fix bookmark display widthsd90ab1e
Fix typo in eww-make-unique-file-name7f81825
Make it possible to TAB to input fieldsa43a1dc
Insert complete alt texts when images are disabled56ed4e1
Allow eww text fields to grow66b315c
Make erc work when subword-mode is switched on255b68f
Fix IMAP doc example91557f5
Quoting fixes in doc strings and diagnostics2c0dc9f
Fix warning message in hack-local-variables504696d
Etags: yet another improvement in Ruby tags8784ebf
Fix x-popup-menu on TTYs without a mouse8b87ecb
* lisp/emacs-lisp/map.el: Improvements to the docstring of the pcase macro6191003
Use pop-to-buffer-same-window in ewwfe321fd
* autogen.sh: Revert all recent changes.74ebd4a
* make-dist: Updates related to nt/.737193a
* make-dist: Add modules/.3696bf2
* make-dist: Update for super-special file that can't live in etc/.a4278e2
Fix failure to compile ns-win.el in parallel builds860da4d
Fix names of tags generated for Ruby accessorsf6213ce
Fix file-name recognition in 'etags'e42e662
Change Ruby file names and extensions recognized by 'etags'58bfb6a
More improvements for Ruby support in 'etags'c04e911
Add --git-config option to autogen.sh5713466
Fix editing undo changes in eww fields51362d6
Allow the user more control of popping up the eww windowee0fbd8
Make eww-browse-url with new-window parameter work again9c3142d
Clean up eww code slightlycb035f3
Don't insert nil faces in shr 4c3fae3 ; * lisp/progmodes/prolog.el: Remove some obsolete commentary.93f2153
Improve the custom type of some user options.9f60d7e
Mark some risky calendar variables.1d07dcd
Highlight two additional SCSS keywordsee8b466
Recommend enabling integrity-checking in gite639e10
Some corrections in Elisp manuald766ca8
Chatter when autogen.sh changes Git configuration3b734e1
* org/org-compat.el (org-font-lock-ensure): Fix bogus test (bug#22399)43cb9f8
Omit unnecessary history from Lisp intro2fbd1da
* etc/HISTORY: Add some more history, plus git tags.c90e1b4
Improve elisp “Security Considerations” doccedd7ca
autogen.sh now arranges for git to check hashes86ce76b
; Fix ChangeLog.2 commit ID.7b1d2b1
Fix (c & 040) typo in emergency escapesa8273da
Fix display of overlay strings with 'display' and 'box' propertyfc48106
Fix imap-starttls-opencdecbed
Fix return value of imap-starttls-open20c7e34
; * etc/NEWS: Fix renamed command name98bdbdb
Correct reference to DARWIN_OS preprocessor symbolb250d29
Spelling fixb920a0e
Spelling fixes93b144b
Pacify GCC on C library without glibc API
77 lines
1.1 KiB
SCSS
77 lines
1.1 KiB
SCSS
// Comment!
|
|
|
|
nav {
|
|
ul {
|
|
margin: 0; /* More comment */
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
li { display: inline-block; }
|
|
|
|
a {
|
|
display: block;
|
|
padding: 6px 12px;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
nav ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
nav li {
|
|
display: inline-block;
|
|
}
|
|
|
|
nav a var
|
|
{
|
|
display: block;
|
|
padding: 6px 12px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
$name: foo;
|
|
$attr: border;
|
|
p.#{$name} var
|
|
{
|
|
x#{$attr}-color: blue;
|
|
}
|
|
article[role="main"] {
|
|
$toto: 500 !global;
|
|
$var-with-default: 300 !default;
|
|
float: left !important;
|
|
width: 600px / 888px * 100%;
|
|
height: 100px / 888px * 100%;
|
|
}
|
|
|
|
%placeholder {
|
|
color: #f0f0f0;
|
|
}
|
|
|
|
button {
|
|
@extend %placeholder !optional;
|
|
}
|
|
|
|
@import 'reset';
|
|
|
|
@mixin border-radius($radius) {
|
|
-webkit-border-radius: $radius;
|
|
-moz-border-radius: $radius;
|
|
-ms-border-radius: $radius;
|
|
border-radius: $radius;
|
|
}
|
|
|
|
.box { @include border-radius(10px); }
|
|
|
|
// bug:21230
|
|
$list: (
|
|
('a', #000000, #fff)
|
|
('b', #000000, #fff)
|
|
('c', #000000, #fff)
|
|
('d', #000000, #fff)
|
|
('e', #000000, #fff)
|
|
('f', #000000, #fff)
|
|
);
|