تبديل القائمة
Toggle preferences menu
تبديل القائمة الشخصية
غير مسجل للدخول
سيكون عنوان الآيبي الخاص بك مرئيًا للعامة إذا قمت بإجراء أي تعديلات.
أنشأ الصفحة ب'table.timeline { box-shadow: none; } table.timeline, table.timeline tbody { display: block; } table.timeline tr { position: relative; margin-right: 8px; padding: var( --space-xs ) var( --space-xs ) var( --space-xs ) 20px; display: flex; flex-direction: column; border-top-left-radius: var( --border-radius-small ); border-bottom-left-radius: var( --border-radius-small ); } table.timeline tr:before { content: ""; position: absolute;...'
 
لا ملخص تعديل
 
سطر 1: سطر 1:
table.timeline {
table.timeline {
box-shadow: none;
box-shadow: none;
margin-block: var( --space-md );
font-size: var( --font-size-small );
}
}


سطر 9: سطر 11:
table.timeline tr {
table.timeline tr {
position: relative;
position: relative;
margin-right: 8px;
margin-right: 8px; /* Flipped from margin-left */
padding: var( --space-xs ) var( --space-xs ) var( --space-xs ) 20px;
padding: var( --space-xs ) 20px var( --space-xs ) var( --space-xs ); /* Flipped padding sides */
     display: flex;
     display: flex;
     flex-direction: column;
     flex-direction: column;
     border-top-left-radius: var( --border-radius-small );
     border-top-left-radius: var( --border-radius-small ); /* Flipped from right */
     border-bottom-left-radius: var( --border-radius-small );
     border-bottom-left-radius: var( --border-radius-small ); /* Flipped from right */
}
}


سطر 22: سطر 24:
     top: 0;
     top: 0;
     bottom: 0;
     bottom: 0;
     right: -1px;
     right: -1px; /* Flipped from left */
     display: block;
     display: block;
     width: 2px;
     width: 2px;
سطر 30: سطر 32:
table.timeline tr td:first-child {
table.timeline tr td:first-child {
     font-size: var( --font-size-medium );
     font-size: var( --font-size-medium );
     font-weight: var( --font-weight-semibold );
     font-weight: var( --font-weight-semi-bold );
     color: var( --color-base--emphasized );
     color: var( --color-emphasized );
}
}


سطر 39: سطر 41:
     height: 8px;
     height: 8px;
     display: block;
     display: block;
     background-color: var( --color-base--subtle );
     background-color: var( --color-subtle );
     border-radius: 100%;
     border-radius: 100%;
     position: absolute;
     position: absolute;
     right: -4px;
     right: -4px; /* Flipped from left */
     margin-top: 8px;
     margin-top: 8px;
}
}

المراجعة الحالية بتاريخ 08:51، 23 يوليو 2026

table.timeline {
	box-shadow: none;
	margin-block: var( --space-md );
	font-size: var( --font-size-small );
}

table.timeline, table.timeline tbody {
    display: block;
}

table.timeline tr {
	position: relative;
	margin-right: 8px; /* Flipped from margin-left */
	padding: var( --space-xs ) 20px var( --space-xs ) var( --space-xs ); /* Flipped padding sides */
    display: flex;
    flex-direction: column;
    border-top-left-radius: var( --border-radius-small ); /* Flipped from right */
    border-bottom-left-radius: var( --border-radius-small ); /* Flipped from right */
}

table.timeline tr:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -1px; /* Flipped from left */
    display: block;
    width: 2px;
    background-color: var( --border-color-base );
}

table.timeline tr td:first-child {
    font-size: var( --font-size-medium );
    font-weight: var( --font-weight-semi-bold );
    color: var( --color-emphasized );
}

table.timeline tr td:first-child:before {
	content: "";
    width: 8px;
    height: 8px;
    display: block;
    background-color: var( --color-subtle );
    border-radius: 100%;
    position: absolute;
    right: -4px; /* Flipped from left */
    margin-top: 8px;
}

table.timeline tr td {
	padding: 0;
	border: 0 !important;
}